URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [mips16e-extends.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* -mlong32 added because of PR target/38595. */ /* { dg-options "(-mips16) -Os isa_rev>=1 -mlong32" } */ MIPS16 short cksum16 (unsigned long n) { unsigned long l; l = validate (n, (n >> 16) + (n & 0xffff)); return l; } MIPS16 signed char cksum8 (unsigned long n) { unsigned long l; l = validate (n, (n >> 8) + (n & 0xff)); return l; } /* { dg-final { scan-assembler "zeh" } } */ /* { dg-final { scan-assembler "seh" } } */ /* { dg-final { scan-assembler "zeb" } } */ /* { dg-final { scan-assembler "seb" } } */
Go to most recent revision | Compare with Previous | Blame | View Log