ref: 8a71476cce84016b86892eeae18341232a5f612c
dir: /cc1/tests/test011.c/
/* name: TEST011 description: Basic test for goto output: test011.c:14: warning: 'foo' defined but not used test011.c:14: warning: 'start' defined but not used F1 G1 F1 main { - L2 j L3 yI #I1 L4 yI #I0 L3 L5 j L4 yI #I1 } */ #line 1 int main() { start: goto next; return 1; success: return 0; next: foo: goto success; return 1; }