URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [compat/] [struct-complex-1_y.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-options "-O" } */ #ifdef __x86_64__ #include <stdlib.h> #include "struct-complex-1.h" void bar(struct st x) { if (x.s1 != 1 || x.s2 != 2 || __real__ x.x != 2 || __imag__ x.x != 4) abort (); } void foo(struct stc x) { if (x.s1 != 1 || x.s2 != 2 || x.x.r != 2 || x.x.i != 4) abort (); } #else int dummy_y; #endif