OSDN Git Service

Add missing test from last commit
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / tree-ssa / pr30738.C
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-phiopt1" } */
3
4 template <class T>
5 static inline const T&
6 min_ref (const T &x, const T &y)
7 {
8   return x < y ? x : y;
9 }
10
11 int test_min_ref (int x, int y)
12 {
13   return min_ref (x, y);
14 }
15
16 /* { dg-final { scan-tree-dump "MIN_EXPR" "phiopt1" } } */
17 /* { dg-final { cleanup-tree-dump "phiopt1" } } */