Home | History | Annotate | Download | only in Parser

Lines Matching full:with

52 __vector long vv_l;                 // expected-warning {{Use of 'long' with '__vector' is deprecated}}
53 __vector signed long vv_sl; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
54 __vector unsigned long vv_ul; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
55 __vector long int vv_li; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
56 __vector signed long int vv_sli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
57 __vector unsigned long int vv_uli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
58 vector long v_l; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
59 vector signed long v_sl; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
60 vector unsigned long v_ul; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
61 vector long int v_li; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
62 vector signed long int v_sli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
63 vector unsigned long int v_uli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
64 __vector long double vv_ld; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
65 vector long double v_ld; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
69 __vector double vv_d1; // expected-error {{cannot use 'double' with '__vector'}}
70 vector double v_d2; // expected-error {{cannot use 'double' with '__vector'}}
71 __vector long double vv_ld3; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
72 vector long double v_ld4; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}}
73 vector bool float v_bf; // expected-error {{cannot use 'float' with '__vector bool'}}
74 vector bool double v_bd; // expected-error {{cannot use 'double' with '__vector bool'}}
75 vector bool pixel v_bp; // expected-error {{cannot use '__pixel' with '__vector bool'}}
76 vector bool signed char v_bsc; // expected-error {{cannot use 'signed' with '__vector bool'}}
77 vector bool unsigned int v_bsc2; // expected-error {{cannot use 'unsigned' with '__vector bool'}}
78 vector bool long v_bl; // expected-error {{cannot use 'long' with '__vector bool'}}
79 vector bool long long v_bll; // expected-error {{cannot use 'long long' with '__vector bool'}}
117 // bug 7553 - Problem with '==' and vectors