[vox-tech] gdb segfaults when printing long double complex variables

Micah J. Cowan micah at cowan.name
Thu Jun 10 09:25:16 PDT 2004


On Thu, Jun 10, 2004 at 08:21:55AM -0700, Peter Jay Salzman wrote:
> Bug: GDB segfaults when printing long double complex variables.
> 
> Sample Code:
> 
> 1       #include <tgmath.h>
> 2       #include <stdio.h>
> 3
> 4       int main(void)
> 5       {
> 6               complex a;
> 7               double complex b;
> 8               long double complex c;
> 9
> 10              a = 5 + 2I;
> 11              printf("%f + %fi\n", __real__ a, __imag__ a);
> 12
> 13              b = 5.0 + 2.0I;
> 14              printf("%f + %fi\n", __real__ b, __imag__ b);
> 15
> 16              c = 5.0L + 2.0LI;
> 17              printf("%Lf + %Lfi\n", __real__ c, __imag__ c);
> 18
> 19              return 0;
> 20      }

creal() and cimag() are more portable than __real__ and __imag__. You
should avoid the latter, as they are GNU extensions. See the GCC info
docs for more.

-- 
Micah J. Cowan
micah at cowan.name


More information about the vox-tech mailing list