rt_gccstream/gcc/testsuite/gcc.target/arm/asm.c

14 lines
239 B
C

/* ARM and Thumb asm statements should be able to access the constant
pool. */
/* { dg-do compile } */
extern unsigned x[];
unsigned *trapTable()
{
unsigned *i;
__asm__ volatile("ldr %0,%1" : "=r"(i) : "m"(x[0]));
return i;
}