Home | History | Annotate | Download | only in Sema

Lines Matching defs:__ptr32

138 void ptr_func(int * __ptr32 i) {}  // expected-note {{previous definition is here}}
142 void ptr_func2(int * __sptr __ptr32 i) {} // expected-note {{previous definition is here}}
143 void ptr_func2(int * __uptr __ptr32 i) {} // expected-error {{redefinition of 'ptr_func2'}}
145 int * __sptr __ptr32 __sptr wrong4; // expected-warning {{attribute '__sptr' is already applied}}
147 __ptr32 int *wrong5; // expected-error {{'__ptr32' attribute only applies to pointer arguments}}
149 int *wrong6 __ptr32; // expected-error {{expected ';' after top level declarator}} expected-warning {{declaration does not declare anything}}
151 int * __ptr32 __ptr64 wrong7; // expected-error {{'__ptr32' and '__ptr64' attributes are not compatible}}
153 int * __ptr32 __ptr32 wrong8; // expected-warning {{attribute '__ptr32' is already applied}}
155 int *(__ptr32 __sptr wrong9); // expected-error {{'__sptr' attribute only applies to pointer arguments}} // expected-error {{'__ptr32' attribute only applies to pointer arguments}}
158 T __ptr32 wrong10; // expected-error {{'__ptr32' attribute only applies to pointer arguments}}