Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr17529.c
blob63a96a1c363565f4e13b01f0e32f75c4c792047f
2 static inline void
3 bar (const int * const x)
4 {
5 __asm__ __volatile__ (""::"m" (*x));
6 }
8 static const int y[1];
10 void
11 foo (void)
13 bar (y);