Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/pr20922-5.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 /* { dg-do compile } */ |
2 /* { dg-options "-fsignaling-nans -fwrapv -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 (double i) | |
14 { | |
15 return i >= i + 2.0; | |
16 } | |
17 | |
18 int j (double i) | |
19 { | |
20 return i > i + 2.0; | |
21 } | |
22 /* { dg-final { scan-tree-dump-times " = 0" 0 "gimple" } } */ |