* gcc.dg/compare1.c: Skip on arm*-*-eabi* arm*-*-symbianelf*.
[official-gcc.git] / gcc / testsuite / gcc.dg / compare9.c
blobe46e0641ade7ae38a6a3aee7380887b776c485ca
1 /* Test for a bogus warning on comparison between signed and unsigned.
2 This was inspired by code in gcc. This testcase is identical to
3 compare1.c except that we add -fno-short-enums to accomodate
4 targets with short enums being default, such as arm*-*-eabi* and
5 arm*-*-symbianelf*. */
7 /* { dg-do compile } */
8 /* { dg-options "-fno-short-enums -Wsign-compare" } */
10 int tf = 1;
12 /* This enumeration has an explicit negative value and is therefore signed. */
13 enum mm1
15 VOID, SI, DI, MAX = -1
18 /* This enumeration fits entirely in a signed int, but is unsigned anyway. */
19 enum mm2
21 VOID2, SI2, DI2, MAX2
24 int f(enum mm1 x)
26 return x == (tf?DI:SI); /* { dg-bogus "signed and unsigned" "case 1" } */
29 int g(enum mm1 x)
31 return x == (tf?DI:-1); /* { dg-bogus "signed and unsigned" "case 2" } */
34 int h(enum mm2 x)
36 return x == (tf?DI2:SI2); /* { dg-bogus "signed and unsigned" "case 3" } */
39 int i(enum mm2 x)
41 return x == (tf?DI2:-1); /* { dg-warning "signed and unsigned" "case 4" } */