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.target/] [mips/] [ext_ins.c] - Rev 324
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "isa_rev>=2" } */ /* { dg-final { scan-assembler "ext" } } */ /* { dg-final { scan-assembler "ins" } } */ struct A { unsigned int i : 2; unsigned int j : 3; unsigned int k : 4; unsigned int l : 5; }; void func (struct A); unsigned int f1 (struct A a) { return a.j; } void f2 (int i) { struct A c; c.j = i; func (c); }
Go to most recent revision | Compare with Previous | Blame | View Log