URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [movcc-1.c] - Rev 724
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 isa>=4" } */ /* { dg-final { scan-assembler "movz" } } */ /* { dg-final { scan-assembler "movn" } } */ void ext_int (int); NOMIPS16 int sub1 (int i, int j, int k) { ext_int (k ? i : j); } NOMIPS16 int sub2 (int i, int j, long l) { ext_int (!l ? i : j); }
Go to most recent revision | Compare with Previous | Blame | View Log