Lines Matching full:mode

18 typedef int i16_1 __attribute((mode(HI)));
23 typedef float f64 __attribute((mode(DF)));
26 typedef int invalid_1 __attribute((mode)); // expected-error{{'mode' attribute takes one argument}}
27 typedef int invalid_2 __attribute((mode())); // expected-error{{'mode' attribute takes one argument…
28 typedef int invalid_3 __attribute((mode(II))); // expected-error{{unknown machine mode}}
29 typedef struct {int i,j,k;} invalid_4 __attribute((mode(SI))); // expected-error{{mode attribute on…
30 typedef float invalid_5 __attribute((mode(SI))); // expected-error{{type of machine mode does not m…
31 typedef int invalid_6 __attribute__((mode(12))); // expected-error{{'mode' attribute requires an i…
33 typedef unsigned unwind_word __attribute((mode(unwind_word)));
35 int **__attribute((mode(QI)))* i32; // expected-error{{mode attribute}}
37 __attribute__((mode(QI))) int invalid_func(void) { return 1; } // expected-error{{'mode' attribute … in invalid_func()
38 enum invalid_enum { A1 __attribute__((mode(QI))) }; // expected-error{{'mode' attribute only applie…
40 typedef _Complex float c16a __attribute((mode(HC)));
42 typedef _Complex double c16b __attribute((mode(HC)));
45 typedef _Complex double c32 __attribute((mode(SC)));
47 typedef _Complex float c64 __attribute((mode(DC)));
49 #if !defined(__powerpc__) && !defined(__mips__) // Note, 'XC' mode is illegal for PPC64 and MIPS ma…
50 typedef _Complex float c80 __attribute((mode(XC)));
54 // modes. Also test other mode-based conversions.
82 typedef unsigned int gcc_word __attribute__((mode(word)));
84 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
92 typedef float f128ibm __attribute__ ((mode (TF)));
94 typedef float f128ibm __attribute__ ((mode (TF)));
95 typedef _Complex float c128ibm __attribute__ ((mode (TC)));
100 typedef float w128ibm __attribute__((mode(IF)));
101 typedef _Complex float cw128ibm __attribute__((mode(IC)));
107 typedef int invalid_7 __attribute((mode(KF))); // expected-error{{type of machine mode does not mat…
108 typedef int invalid_8 __attribute((mode(KI))); // expected-error{{unknown machine mode}}
109 typedef _Complex float cf128 __attribute__((mode(KC)));
110 typedef float f128 __attribute__((mode(KF)));
116 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
119 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
122 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
129 int n __attribute((mode(HI)));