Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:end

4 double *end;
8 int end = 0;
11 goto end;
14 end = 1;
18 end:
23 float* end;
27 int end = 0;
30 goto end;
33 end = 1;
37 end:
43 end = 1; // expected-error{{assigning to 'double *' from incompatible type 'int'}}
46 void h(int end) {
48 goto end; // expected-error{{use of undeclared label 'end'}}
52 void h2(int end) {
54 __label__ end;
55 goto end;
57 end:
58 ::end = 0;
60 end: // expected-warning{{unused label 'end'}}
61 end = 1;