testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / pr92352.c
blobd714e9fa32ad386b21c9fbb496332f79283196fd
1 /* PR inline-asm/92352 */
3 void
4 foo (int x)
6 int var[x];
7 asm volatile ("" : "+r" (var)); /* { dg-error "impossible constraint in 'asm'" } */
8 } /* { dg-error "non-memory output 0 must stay in memory" "" { target *-*-* } .-1 } */
10 void
11 bar (int x)
13 int var[x];
14 asm volatile ("" : "+m" (var));