Chris Lattner | e58a01f | 2002-07-23 18:28:03 +0000 | [diff] [blame] | 1 | ; Crash in post dominator set construction. |
2 | ; | ||||
3 | ; RUN: analyze -postdomset %s | ||||
4 | ; | ||||
5 | |||||
6 | implementation | ||||
7 | |||||
8 | int "postdomsettest"() | ||||
9 | begin | ||||
10 | br label %L2Top | ||||
11 | |||||
12 | L2Top: | ||||
13 | br bool true, label %L2End, label %L2Body | ||||
14 | |||||
15 | L2Body: | ||||
16 | br label %L2Top | ||||
17 | |||||
18 | L2End: | ||||
19 | ret int 0 | ||||
20 | end | ||||
21 |