| Mike Stump | dec5a39 | 2010-01-15 03:15:36 +0000 | [diff] [blame] | 1 | // RUN: %clang %s -fsyntax-only -Xclang -verify -fblocks -Wunreachable-code |
| 2 | |||||
| 3 | void test1() { | ||||
| 4 | goto c; | ||||
| 5 | d: | ||||
| 6 | goto e; // expected-warning {{will never be executed}} | ||||
| 7 | c: ; | ||||
| 8 | int i; | ||||
| 9 | return; | ||||
| 10 | goto b; // expected-warning {{will never be executed}} | ||||
| 11 | goto a; // expected-warning {{will never be executed}} | ||||
| 12 | b: | ||||
| 13 | i = 1; | ||||
| 14 | a: | ||||
| 15 | i = 2; | ||||
| 16 | goto f; | ||||
| 17 | e: | ||||
| 18 | goto d; | ||||
| 19 | f: ; | ||||
| 20 | } | ||||