URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [931102-2.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
typedef union { long align; struct { short h, l; } b; } T; f (x) int x; { int num = 0; T reg; reg.b.l = x; while ((reg.b.l & 1) == 0) { num++; reg.b.l >>= 1; } return num; } main () { if (f (2) != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log