Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / asm.c
blob452ebf4dec8e24b8c9d167c6908fa5813414b8ac
1 /* ARM and Thumb asm statements should be able to access the constant
2 pool. */
3 /* { dg-do compile } */
4 extern unsigned x[];
5 unsigned *trapTable()
7 unsigned *i;
9 __asm__ volatile("ldr %0,%1" : "=r"(i) : "m"(x[0]));
11 return i;