aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr17529.c
blob: 63a96a1c363565f4e13b01f0e32f75c4c792047f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

static inline void 
bar (const int * const x) 
{ 
  __asm__ __volatile__ (""::"m" (*x)); 
} 
 
static const int y[1]; 
 
void 
foo (void) 
{ 
  bar (y); 
}