AVR: target/98762 - Handle partial clobber in movqi output.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020916-1.c
blob75e5f6d0f6ba8fb4ffff3f3114c8f5960ce13d8b
1 /* Distilled from try_pre_increment in flow.c. If-conversion inserted
2 new instructions at the wrong place on ppc. */
4 void abort(void);
6 int foo(int a)
8 int x;
9 x = 0;
10 if (a > 0) x = 1;
11 if (a < 0) x = 1;
12 return x;
15 int main()
17 if (foo(1) != 1)
18 abort();
19 return 0;