Lines Matching full:jump
4 goto L; // expected-error{{cannot jump from this goto statement to its label}}
5 int a[x]; // expected-note {{jump bypasses initialization of variable length array}}
6 int b[x]; // expected-note {{jump bypasses initialization of variable length array}}
12 goto L; // expected-error{{cannot jump from this goto statement to its label}}
13 typedef int a[x]; // expected-note {{jump bypasses initialization of VLA typedef}}
21 goto L; // expected-error{{cannot jump from this goto statement to its label}}
22 int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of variable with __attribute__((cleanup))}}
28 goto L; // expected-error{{cannot jump from this goto statement to its label}}
29 int a[x]; // expected-note {{jump bypasses initialization of variable length array}}
52 int a[x]; // expected-note {{jump bypasses initialization of variable length array}}
53 case 2: // expected-error {{cannot jump from switch statement to this case label}}
61 goto L2; // expected-error {{cannot jump from this goto statement to its label}}
62 for (int arr[x]; // expected-note {{jump bypasses initialization of variable length array}}
67 goto L3; // expected-error {{cannot jump from this goto statement to its label}}
68 int Y = ({ int a[x]; // expected-note {{jump bypasses initialization of variable length array}}
71 goto L4; // expected-error {{cannot jump from this goto statement to its label}}
73 int A[x], // expected-note {{jump bypasses initialization of variable length array}}
74 B[x]; // expected-note {{jump bypasses initialization of variable length array}}
94 goto L8; // expected-error {{cannot jump from this goto statement to its label}}
96 C[x]; // expected-note {{jump bypasses initialization of variable length array}}
106 goto L10; // fixme-error {{cannot jump from this goto statement to its label}}
126 goto L1; // expected-error {{cannot jump from this goto statement to its label}}
128 int a[x]; // expected-note {{jump bypasses initialization of variable length array}}
136 goto *P; // expected-error {{cannot jump from this indirect goto statement to one of its possible targets}}
139 int a[n]; // expected-note {{jump bypasses initialization of variable length array}}
154 goto L0; // expected-error {{cannot jump from this goto statement to its label}}
155 typedef int A[n]; // expected-note {{jump bypasses initialization of VLA typedef}}
158 goto L1; // expected-error {{cannot jump from this goto statement to its label}}
159 A b, c[10]; // expected-note 2 {{jump bypasses initialization of variable length array}}
161 goto L2; // expected-error {{cannot jump from this goto statement to its label}}
162 A d[n]; // expected-note {{jump bypasses initialization of variable length array}}
173 int Arr[n]; // expected-note {{jump bypasses initialization of variable length array}}
174 case 4: // expected-error {{cannot jump from switch statement to this case label}}
188 goto L3; // expected-error {{cannot jump from this goto statement to its label}}
189 int Arr[n]; // expected-note {{jump bypasses initialization of variable length array}}
223 goto *pc; // expected-error {{cannot jump from this indirect goto statement to one of its possible targets}}
227 char vla[n]; // expected-note {{jump bypasses initialization}}