2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr27302.c
blob0e41fc385e0a6da809893ae2a8800e8441272b1a
1 /* { dg-do run } */
3 extern void link_error (void);
5 void test0 (int a, int b)
7 if ((a < b) != (b > a))
8 link_error ();
11 int main()
13 test0 (1, 2);
14 return 0;