blob: e5c82f54b62f0b672b87d19da4b9614cb51f429b [file] [log] [blame]
Leonard Chanf921d852018-06-04 16:07:52 +00001// RUN: %clang_cc1 -x c -verify %s
2
3// Primary fixed point types
4signed short _Accum s_short_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
5signed _Accum s_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
6signed long _Accum s_long_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
7unsigned short _Accum u_short_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
8unsigned _Accum u_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
9unsigned long _Accum u_long_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
10
11// Aliased fixed point types
12short _Accum short_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
13_Accum accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}
14 // expected-warning@-1{{type specifier missing, defaults to 'int'}}
15long _Accum long_accum; // expected-error{{compile with '-ffixed-point' to enable fixed point types}}