testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / pr108365.c
blob684a8e9a8cca9cd9617fafbf7fed3dca0b89491f
1 /* PR c++/108365 */
2 /* { dg-do compile { target { { ilp32 || lp64 } || llp64 } } } */
3 /* { dg-options "-O2 -fdump-tree-gimple" } */
4 /* { dg-final { scan-tree-dump-not " \\\((int|unsigned short int|long long int|unsigned int)\\\) " "gimple" } } */
6 unsigned short
7 foo (unsigned short x, unsigned short y)
9 return (unsigned) x / y;
12 unsigned int
13 bar (unsigned int x, unsigned int y)
15 return (long long) x / y;