Home | History | Annotate | Download | only in Parser

Lines Matching full:with

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