Home | History | Annotate | Download | only in Sema

Lines Matching full:should

12   __builtin_tbegin(4); // expected-error {{argument should be a value from 0 to 1}}
13 __builtin_tend(-1); // expected-error {{argument should be a value from 0 to 1}}
14 __builtin_tsr(55); // expected-error {{argument should be a value from 0 to 7}}
15 __builtin_tabortwc(-5, 2, 3); // expected-error {{argument should be a value from 0 to 31}}
16 __builtin_tabortdc(55, 2, 3); // expected-error {{argument should be a value from 0 to 31}}
17 __builtin_tabortwci(-5, 2, 5); // expected-error {{argument should be a value from 0 to 31}}
18 __builtin_tabortwci(5, 2, 55); // expected-error {{argument should be a value from 0 to 31}}
19 __builtin_tabortdci(-5, 2, 5); // expected-error {{argument should be a value from 0 to 31}}
20 __builtin_tabortdci(5, 2, 55); // expected-error {{argument should be a value from 0 to 31}}
33 vector unsigned int b = __builtin_crypto_vshasigmaw(a, 2, 15); // expected-error {{argument should be a value from 0 to 1}}
34 vector unsigned int c = __builtin_crypto_vshasigmaw(a, -1, 15); // expected-error {{argument should be a value from 0 to 1}}
35 vector unsigned int d = __builtin_crypto_vshasigmaw(a, 0, 85); // expected-error {{argument should be a value from 0 to 15}}
36 vector unsigned int e = __builtin_crypto_vshasigmaw(a, 1, -15); // expected-error {{argument should be a value from 0 to 15}}
43 vector unsigned long long b = __builtin_crypto_vshasigmad(a, 2, 15); // expected-error {{argument should be a value from 0 to 1}}
44 vector unsigned long long c = __builtin_crypto_vshasigmad(a, -1, 15); // expected-error {{argument should be a value from 0 to 1}}
45 vector unsigned long long d = __builtin_crypto_vshasigmad(a, 0, 85); // expected-error {{argument should be a value from 0 to 1}}
46 vector unsigned long long e = __builtin_crypto_vshasigmad(a, 1, -15); // expected-error {{argument should be a value from 0 to 1}}