OSDN Git Service

* gcc.dg/altivec-vec-merge.c: Make test usable on GNU/Linux targets
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr20922-6.c
1 /* { dg-do compile } */
2 /* { dg-options "-ffast-math -fno-wrapv -fdump-tree-gimple" } */
3 int f(int i)
4 {
5   return i >= (i - 2);
6 }
7
8 int g(int i)
9 {
10   return i <= (i + 2);
11 }
12
13 int h(int i)
14 {
15   return i >= (i + (-2));
16 }
17
18 int x(double i)
19 {
20   return i >= (i - 2.0);
21 }
22
23 int y(double i)
24 {
25   return i <= (i + 2.0);
26 }
27
28 int z(double i)
29 {
30   return i >= (i + (-2.0));
31 }
32 /* { dg-final { scan-tree-dump-times " = 1" 6 "gimple" } } */
33 /* { dg-final { cleanup-tree-dump "gimple" } } */