Fix all tests that fail with -sanitize=return.
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr23046.C
blobeb8f395580bb385bb28eccf14acfc9753221f469
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 enum eumtype { ENUM1, ENUM2 };
5 void g(const eumtype kind );
6 void f(long i);
7 void g(const eumtype kind)
9   if ((kind != ENUM1) && (kind != ENUM2))
10     f(kind);