comparison gcc/testsuite/gcc.dg/max.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3
4 static inline int
5 max (int a, int b)
6 {
7 return a < b ? b : a;
8 }
9
10 int
11 test_00 (int a)
12 {
13 return max (a, a + 8);
14 }
15
16 int
17 test_01 (int a)
18 {
19 return max (a, a - 8);
20 }
21
22 /* { dg-final { scan-tree-dump-not "MAX_EXPR" "optimized" } } */