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/] [arm/] [cond-asm.c] - Rev 313
Compare with Previous | Blame | View Log
/* Check that %? in inline asm expands to nothing. */ /* { dg-do compile } */ /* { dg-options "-O2" } */ /* { dg-require-effective-target arm32 } */ int b; int foo(int a) { if (a) b = 42; asm ("test%?me":"=r"(a):"0"(a)); return a; } /* { dg-final { scan-assembler "testme" } } */