Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:requested

5   a = (int *) __builtin_assume_aligned(a, z + 1); // expected-error {{requested alignment is not a power of 2}}
10 test9<42>(a); // expected-note {{in instantiation of function template specialization 'test9<42>' requested here}}
20 return test10(a, 42); // expected-note {{in instantiation of function template specialization 'test10<int>' requested here}}
24 void *atest() __attribute__((assume_aligned(q))); // expected-error {{requested alignment is not a power of 2}}
27 void *atest2() __attribute__((assume_aligned(q, o))); // expected-error {{requested alignment is not a power of 2}}
30 atest<31>(); // expected-note {{in instantiation of function template specialization 'atest<31>' requested here}}
33 atest2<31, 5>(); // expected-note {{in instantiation of function template specialization 'atest2<31, 5>' requested here}}
40 void *p = f<void>(); // expected-note {{in instantiation of function template specialization 'f<void>' requested here}}
46 void *p = g<void>(); // expected-note {{in instantiation of function template specialization 'g<void>' requested here}}
50 T *atest3() __attribute__((assume_aligned(31, o))); // expected-error {{requested alignment is not a power of 2}}
81 void *atest5() __attribute__((assume_aligned(X::x))); // expected-error {{requested alignment is not a power of 2}}
85 atest5<s3>(); // expected-note {{in instantiation of function template specialization 'atest5<s3>' requested here}}