* gcc.dg/compare1.c: Skip on arm*-*-eabi* arm*-*-symbianelf*.
[official-gcc.git] / gcc / testsuite / gcc.dg / compare1.c
blob06049270c077c452452ce6a0b2afc4f1ee79f076
1 /* Test for a bogus warning on comparison between signed and unsigned.
2 This was inspired by code in gcc. */
4 /* { dg-do compile } */
5 /* { dg-options "-Wsign-compare" } */
6 /* This test would fail on targets with short enums being default. See
7 compare9.c. */
8 /* { dg-skip-if "" { arm*-*-eabi* arm*-*-symbianelf* } { "*" } { "" } } */
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" } */