URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [arm-asm.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* ARM and Thumb asm statements should be able to access the constant pool. */ /* { dg-do compile { target arm*-*-* strongarm*-*-* xscale*-*-*} } */ extern unsigned x[]; unsigned *trapTable() { unsigned *i; __asm__ volatile("ldr %0,%1" : "=r"(i) : "m"(x[0])); return i; }
Go to most recent revision | Compare with Previous | Blame | View Log