Merge to HEAD at tree-cleanup-merge-20041024 .
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr17529.c
blob77c7a06ddc760ca03e4617afecc14b10a3ae2bde
1 /* { dg-xfail-if "PR middle-end/17529" { "*-*-*" } { "*" } { "" } } */
3 static inline void
4 bar (const int * const x)
5 {
6 __asm__ __volatile__ (""::"m" (*x));
7 }
9 static const int y[];
11 void
12 foo (void)
14 bar (y);