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() { return 1; } // expected-error{{'mode' attribute only… in invalid_func()
38 enum invalid_enum { A1 __attribute__((mode(QI))) }; // expected-error{{'mode' attribute only applie…
40 typedef _Complex double c32 __attribute((mode(SC)));
42 typedef _Complex float c64 __attribute((mode(DC)));
44 #if !defined(__ppc__) && !defined(__mips__) // Note, 'XC' mode is illegal for PPC64 and MIPS machin…
45 typedef _Complex float c80 __attribute((mode(XC)));
49 // modes. Also test other mode-based conversions.
77 typedef unsigned int gcc_word __attribute__((mode(word)));
79 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
87 typedef float f128ibm __attribute__ ((mode (TF)));
89 typedef float f128ibm __attribute__ ((mode (TF)));
90 typedef _Complex float c128ibm __attribute__ ((mode (TC)));
96 typedef int invalid_7 __attribute((mode(KF))); // expected-error{{type of machine mode does not mat…
97 typedef int invalid_8 __attribute((mode(KI))); // expected-error{{unknown machine mode}}
98 typedef _Complex float cf128 __attribute__((mode(KC)));
99 typedef float f128 __attribute__((mode(KF)));
105 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
108 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
111 typedef unsigned int gcc_unwind_word __attribute__((mode(unwind_word)));
118 int n __attribute((mode(HI)));