Home | History | Annotate | Download | only in SemaTemplate

Lines Matching refs:address_space

13 typedef int __attribute__((address_space(1))) int_1;;
14 typedef int __attribute__((address_space(2))) int_2;;
15 typedef int __attribute__((address_space(1))) *int_1_ptr;
41 struct is_pointer_in_address_space_1<T __attribute__((address_space(1))) *> {
53 T *x = 1; // expected-error{{cannot initialize a variable of type '__attribute__((address_space(1))) int *' with an rvalue of type 'int'}} \
54 // expected-error{{cannot initialize a variable of type '__attribute__((address_space(3))) int *' with an rvalue of type 'int'}}
58 static __attribute__((address_space(3))) int array[17];
66 identity<T> accept_arg_in_address_space_1(__attribute__((address_space(1))) T &ir1);
72 static int __attribute__((address_space(1))) int_1;
74 identity<int __attribute__((address_space(1)))> ii2 = accept_any_arg(int_1);
78 template<typename T> int &order1(__attribute__((address_space(1))) T&);
82 static __attribute__((address_space(1))) int i1;