Lines Matching full:__attribute
6 typedef int i16_1 __attribute((mode(HI)));
8 typedef int i16_2 __attribute((__mode__(__HI__)));
11 typedef float f64 __attribute((mode(DF)));
14 typedef int invalid_1 __attribute((mode)); // expected-error{{attribute requires unquoted parameter}}
15 typedef int invalid_2 __attribute((mode())); // expected-error{{attribute requires unquoted parameter}}
16 typedef int invalid_3 __attribute((mode(II))); // expected-error{{unknown machine mode}}
17 typedef struct {int i,j,k;} invalid_4 __attribute((mode(SI))); // expected-error{{mode attribute only supported for integer and floating-point types}}
18 typedef float invalid_5 __attribute((mode(SI))); // expected-error{{type of machine mode does not match type of base type}}
20 int **__attribute((mode(QI)))* i32; // expected-error{{mode attribute}}
22 typedef _Complex double c32 __attribute((mode(SC)));
24 typedef _Complex float c64 __attribute((mode(DC)));
25 typedef _Complex float c80 __attribute((mode(XC)));