Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / pr105218.c
blob0070057c32db8c84387724350e7bcd6b7db35325
1 /* PR tree-optimization/105218 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g" } */
5 int a, c;
6 void bar (void);
8 void
9 foo (void)
11 int b = 131;
12 if (a)
13 b = c == 2 ? 1 : c;
14 while (b)
15 bar ();