Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20040820-1.c
blob366607c827ea632cdcc3bcc8eca08fa5652a9248
1 /* PR rtl-optimization/17099 */
3 extern void exit (int);
4 extern void abort (void);
6 void
7 check (int a)
9 if (a != 1)
10 abort ();
13 void
14 test (int a, int b)
16 check ((a ? 1 : 0) | (b ? 2 : 0));
19 int
20 main (void)
22 test (1, 0);
23 exit (0);