re PR tree-optimization/33593 (tree-outof-ssa moves sources of non-call exceptions...
[gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr23046.C
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 enum eumtype { ENUM1, ENUM2 };
5 void g(const eumtype kind );
6 void f(long i);
7 void g(const eumtype kind)
8 {
9 if ((kind != ENUM1) && (kind != ENUM2))
10 f(kind);
11 }