URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [931102-2.c] - Rev 149
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