AVR: avr.cc - Drop a superfluous sub-condition in avr_out_compare.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960801-1.c
blobe1b7f8b17fc5448d93648df0f1e8b616b329f308
1 void abort (void);
2 void exit (int);
4 unsigned
5 f ()
7 long long l2;
8 unsigned short us;
9 unsigned long long ul;
10 short s2;
12 ul = us = l2 = s2 = -1;
13 return ul;
16 unsigned long long
17 g ()
19 long long l2;
20 unsigned short us;
21 unsigned long long ul;
22 short s2;
24 ul = us = l2 = s2 = -1;
25 return ul;
28 int
29 main (void)
31 if (f () != (unsigned short) -1)
32 abort ();
33 if (g () != (unsigned short) -1)
34 abort ();
35 exit (0);