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/] [scc-2.c] - Rev 324
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -mgp64" } */ /* { dg-final { scan-assembler-not "and\t\|andi\t\|ext\t\|sll\t\|srl\t" } } */ /* { dg-final { scan-assembler-times "slt\t\|slti?u\t" 12 } } */ #define TEST(N, LHS, REL, RHS) \ NOMIPS16 long long w##N (int a, int b) {return LHS REL RHS;} \ NOMIPS16 int n##N (long long a, long long b) {return LHS REL RHS;} \ TEST (eq, a, ==, 0); TEST (ne, a, !=, 0); TEST (gt, a, >, b); TEST (ge, a, >=, 1); TEST (lt, a, <, b); TEST (le, a, <=, 11);
Go to most recent revision | Compare with Previous | Blame | View Log