aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/arm-asm.c
blob: 1187d9eb466a800f1a8964a124d2207c5335f440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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;
}