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/] [octeon-exts-7.c] - Rev 324
Go to most recent revision | Compare with Previous | Blame | View Log
/* Remove the redundant sign-extension after the sign-extraction. */ /* { dg-do compile } */ /* { dg-options "-O -march=octeon -mgp64" } */ /* { dg-final { scan-assembler-times "\texts\t" 1 } } */ /* { dg-final { scan-assembler-not "sll|sra" } } */ struct bar { long long a:18; long long b:14; }; NOMIPS16 int f1 (struct bar *s) { return s->b; }
Go to most recent revision | Compare with Previous | Blame | View Log