blob: dd99c68553f7c708f5004a41055f8b167aba536f [file] [log] [blame]
/* 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;
}