summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/warn-compare-enum-types-mismatch.c
blob: 2b72aae16b977a80cc9af2c83d57fb6b1104ba00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// RUN: %clang_cc1 -x c -fsyntax-only -verify -Wenum-compare -Wno-unused-comparison %s
// RUN: %clang_cc1 -x c++ -fsyntax-only -verify -Wenum-compare -Wno-unused-comparison %s

typedef enum EnumA {
  A
} EnumA;

enum EnumB {
  B
};

enum {
  C
};

void foo(void) {
  enum EnumA a = A;
  enum EnumB b = B;
  A == B;
  // expected-warning@-1 {{comparison of different enumeration types}}
  a == (B);
  // expected-warning@-1 {{comparison of different enumeration types}}
  a == b;
  // expected-warning@-1 {{comparison of different enumeration types}}
  A > B;
  // expected-warning@-1 {{comparison of different enumeration types}}
  A >= b;
  // expected-warning@-1 {{comparison of different enumeration types}}
  a > b;
  // expected-warning@-1 {{comparison of different enumeration types}}
  (A) <= ((B));
  // expected-warning@-1 {{comparison of different enumeration types}}
  a < B;
  // expected-warning@-1 {{comparison of different enumeration types}}
  a < b;
  // expected-warning@-1 {{comparison of different enumeration types}}

  // In the following cases we purposefully differ from GCC and dont warn 
  a == C; 
  A < C;
  b >= C; 
}