testsuite: Fix up pr110915* tests on i686-linux [PR110915]
[official-gcc.git] / gcc / testsuite / gcc.dg / pr110915-11.c
blobb3636c6aa26e0321aa26982533f68b218ed80839
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ifcombine -Wno-psabi" } */
4 #include <limits.h>
6 #define vector __attribute__((vector_size(sizeof(unsigned)*2)))
8 vector unsigned or1(vector unsigned x, vector unsigned y)
10 /* (x <= y) | (x == 0) --> x <= y */
11 return (x <= y) | (x == 0);
14 vector unsigned or2(vector unsigned x, vector unsigned y)
16 /* (x >= y) | (x == UINT_MAX) --> x >= y */
17 return (x >= y) | (x == UINT_MAX);
20 vector signed or3(vector signed x, vector signed y)
22 /* (x <= y) | (x == INT_MIN) --> x <= y */
23 return (x <= y) | (x == INT_MIN);
26 vector signed or4(vector signed x, vector signed y)
28 /* (x >= y) | (x == INT_MAX) --> x >= y */
29 return (x >= y) | (x == INT_MAX);
32 /* { dg-final { scan-tree-dump-not " == " "ifcombine" } } */