URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [asm-6.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* Check error messages for named asm operands. */ void foo () { int i; __asm__ ("" : [data] "=r" (i) : [data] "i" (100)); /* { dg-error "duplicate asm operand" } */ __asm__ ("%[foo]" :: [bar] "i" (1)); /* { dg-error "undefined named operand" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log