Lines Matching refs:mode
8 typedef int i16_1 __attribute((mode(HI)));
13 typedef float f64 __attribute((mode(DF)));
16 typedef int invalid_1 __attribute((mode)); // expected-error{{'mode' attribute takes one argument}}
17 typedef int invalid_2 __attribute((mode())); // expected-error{{'mode' attribute takes one argument…
18 typedef int invalid_3 __attribute((mode(II))); // expected-error{{unknown machine mode}}
19 typedef struct {int i,j,k;} invalid_4 __attribute((mode(SI))); // expected-error{{mode attribute on…
20 typedef float invalid_5 __attribute((mode(SI))); // expected-error{{type of machine mode does not m…
21 typedef int invalid_6 __attribute__((mode(12))); // expected-error{{'mode' attribute requires an i…
23 typedef unsigned unwind_word __attribute((mode(unwind_word)));
25 int **__attribute((mode(QI)))* i32; // expected-error{{mode attribute}}
27 typedef _Complex double c32 __attribute((mode(SC)));
29 typedef _Complex float c64 __attribute((mode(DC)));
32 typedef _Complex float c80 __attribute((mode(XC)));
65 typedef float f128ibm __attribute__ ((mode (TF))); // expected-error{{unsupported mach…
67 typedef float f128ibm __attribute__ ((mode (TF)));
68 typedef _Complex float c128ibm __attribute__ ((mode (TC)));