Comment #0 by dlang-bugzilla — 2014-09-20T19:57:05Z
Introduced in https://github.com/D-Programming-Language/druntime/pull/958.
After the above pull, Druntime no longer builds if -g is added to the build flags.
Reduced test case:
/////// test.d ///////
struct __c_long_double
{
this(double ) { }
double ld;
}
//////////////////////
Run: dmd -c -g config.d
Compiler segfaults.