OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr17529.c
1
2 static inline void 
3 bar (const int * const x) 
4
5   __asm__ __volatile__ (""::"m" (*x)); 
6
7  
8 static const int y[1]; 
9  
10 void 
11 foo (void) 
12
13   bar (y); 
14