* gcc.target/powerpc/405-dlmzb-strlen-1.c: Skip on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr42685.C
blob3c55955accc296037f2965c92758d430061c13fb
1 // { dg-do compile }
2 // { dg-options "-O -funroll-loops -fcompare-debug" }
3 // { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } }
5 void Remap(int n, int *src, int *dst, int *map)
7   do {
8     int i = *src;
9     if (i != 0) *dst = map[i];
10   } while (--n != 0);