2009-12-15 23:14:24 +03:00
|
|
|
// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
|
2007-08-28 10:15:15 +04:00
|
|
|
enum e {A,
|
|
|
|
B = 42LL << 32, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
|
|
|
C = -4, D = 12456 };
|
|
|
|
|
|
|
|
enum f { a = -2147483648, b = 2147483647 }; // ok.
|
|
|
|
|
|
|
|
enum g { // too negative
|
|
|
|
c = -2147483649, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
|
|
|
d = 2147483647 };
|
|
|
|
enum h { e = -2147483648, // too pos
|
2010-02-18 01:40:11 +03:00
|
|
|
f = 2147483648, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
|
|
|
i = 0xFFFF0000 // expected-warning {{too large}}
|
2007-08-28 10:15:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// minll maxull
|
|
|
|
enum x // expected-warning {{enumeration values exceed range of largest integer}}
|
|
|
|
{ y = -9223372036854775807LL-1, // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
|
|
|
z = 9223372036854775808ULL }; // expected-warning {{ISO C restricts enumerator values to range of 'int'}}
|
|
|
|
|
|
|
|
int test() {
|
|
|
|
return sizeof(enum e) ;
|
|
|
|
}
|
|
|
|
|
2009-03-11 02:43:53 +03:00
|
|
|
enum gccForwardEnumExtension ve; // expected-warning{{ISO C forbids forward references to 'enum' types}} \
|
|
|
|
// expected-error{{tentative definition has type 'enum gccForwardEnumExtension' that is never completed}} \
|
|
|
|
// expected-note{{forward declaration of 'enum gccForwardEnumExtension'}}
|
2008-01-17 02:54:22 +03:00
|
|
|
|
|
|
|
int test2(int i)
|
|
|
|
{
|
2009-03-11 00:58:27 +03:00
|
|
|
ve + i; // expected-error{{invalid operands to binary expression}}
|
2008-01-17 02:54:22 +03:00
|
|
|
}
|
2008-07-03 07:30:58 +04:00
|
|
|
|
|
|
|
// PR2020
|
2008-11-24 02:12:31 +03:00
|
|
|
union u0; // expected-note {{previous use is here}}
|
|
|
|
enum u0 { U0A }; // expected-error {{use of 'u0' with tag type that does not match previous declaration}}
|
2008-07-03 07:30:58 +04:00
|
|
|
|
2008-07-26 03:18:17 +04:00
|
|
|
|
|
|
|
// rdar://6095136
|
|
|
|
extern enum some_undefined_enum ve2; // expected-warning {{ISO C forbids forward references to 'enum' types}}
|
|
|
|
|
|
|
|
void test4() {
|
|
|
|
for (; ve2;) // expected-error {{statement requires expression of scalar type}}
|
|
|
|
;
|
2008-07-26 03:41:08 +04:00
|
|
|
(_Bool)ve2; // expected-error {{arithmetic or pointer type is required}}
|
2008-07-26 03:18:17 +04:00
|
|
|
|
2009-08-01 10:07:15 +04:00
|
|
|
for (; ;ve2) // expected-warning {{expression result unused}}
|
2008-07-26 03:18:17 +04:00
|
|
|
;
|
|
|
|
(void)ve2;
|
2008-07-26 03:41:08 +04:00
|
|
|
ve2; // expected-warning {{expression result unused}}
|
2008-07-26 03:18:17 +04:00
|
|
|
}
|
|
|
|
|
2008-07-26 23:15:11 +04:00
|
|
|
// PR2416
|
|
|
|
enum someenum {}; // expected-warning {{use of empty enum extension}}
|
|
|
|
|
2008-08-07 20:22:45 +04:00
|
|
|
// <rdar://problem/6093889>
|
2008-11-24 02:12:31 +03:00
|
|
|
enum e0 { // expected-note {{previous definition is here}}
|
2009-01-19 22:26:10 +03:00
|
|
|
E0 = sizeof(enum e0 { E1 }), // expected-error {{nested redefinition}}
|
2008-08-07 20:22:45 +04:00
|
|
|
};
|
2008-12-08 05:21:03 +03:00
|
|
|
|
|
|
|
// PR3173
|
|
|
|
enum { PR3173A, PR3173B = PR3173A+50 };
|
2008-12-15 19:32:14 +03:00
|
|
|
|
|
|
|
// PR2753
|
|
|
|
void foo() {
|
|
|
|
enum xpto; // expected-warning{{ISO C forbids forward references to 'enum' types}}
|
|
|
|
enum xpto; // expected-warning{{ISO C forbids forward references to 'enum' types}}
|
|
|
|
}
|
2009-01-17 05:55:50 +03:00
|
|
|
|
|
|
|
// <rdar://problem/6503878>
|
|
|
|
typedef enum { X = 0 }; // expected-warning{{typedef requires a name}}
|
2009-01-19 22:26:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
enum NotYetComplete { // expected-note{{definition of 'enum NotYetComplete' is not complete until the closing '}'}}
|
|
|
|
NYC1 = sizeof(enum NotYetComplete) // expected-error{{invalid application of 'sizeof' to an incomplete type 'enum NotYetComplete'}}
|
|
|
|
};
|
2009-03-06 21:34:03 +03:00
|
|
|
|
|
|
|
/// PR3688
|
|
|
|
struct s1 {
|
|
|
|
enum e1 (*bar)(void); // expected-warning{{ISO C forbids forward references to 'enum' types}}
|
|
|
|
};
|
|
|
|
|
|
|
|
enum e1 { YES, NO };
|
|
|
|
|
|
|
|
static enum e1 badfunc(struct s1 *q) {
|
|
|
|
return q->bar();
|
|
|
|
}
|
2010-01-14 01:07:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
// Make sure we don't a.k.a. anonymous enums.
|
|
|
|
typedef enum {
|
|
|
|
an_enumerator = 20
|
|
|
|
} an_enum;
|
|
|
|
// FIXME: why is this only a warning?
|
|
|
|
char * s = (an_enum) an_enumerator; // expected-warning {{incompatible integer to pointer conversion initializing 'an_enum', expected 'char *'}}
|
2010-02-02 02:36:03 +03:00
|
|
|
|
|
|
|
// PR4515
|
|
|
|
enum PR4515 {PR4515a=1u,PR4515b=(PR4515a-2)/2};
|
|
|
|
int CheckPR4515[PR4515b==0?1:-1];
|