comparison gcc/testsuite/gcc.dg/tree-ssa/minmax-loopend.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */ 1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */ 2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3 3
4 int min_test(long a, long b, long c) { 4 int and_test(long a, long b, long c) {
5 int cmp1 = a < b; 5 int cmp1 = a < b;
6 int cmp2 = a < c; 6 int cmp2 = a < c;
7 return cmp1 & cmp2; 7 return cmp1 & cmp2;
8 } 8 }
9 9
10 int max_test (long a, long b, long c) { 10 int ior_test (long a, long b, long c) {
11 int cmp1 = a > b; 11 int cmp1 = a > b;
12 int cmp2 = a > c; 12 int cmp2 = a > c;
13 return cmp1 & cmp2; 13 return cmp1 | cmp2;
14 } 14 }
15 15
16 /* { dg-final { scan-tree-dump-times "MIN_EXPR" 1 "optimized" } } */ 16 /* { dg-final { scan-tree-dump-times "MIN_EXPR" 2 "optimized" } } */
17 /* { dg-final { scan-tree-dump-times "MAX_EXPR" 1 "optimized" } } */