URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20050107-1.c] - Rev 688
Compare with Previous | Blame | View Log
typedef enum { C = 1, D = 2 } B; extern void abort (void); struct S { B __attribute__ ((mode (byte))) a; B __attribute__ ((mode (byte))) b; }; void foo (struct S *x) { if (x->a != C || x->b != D) abort (); } int main (void) { struct S s; s.a = C; s.b = D; foo (&s); return 0; }