2002-02-01 12:24:20 +08:00
|
|
|
; Crash in post dominator set construction.
|
|
|
|
;
|
|
|
|
; RUN: analyze -postdomset %s
|
|
|
|
;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2002-02-01 12:44:38 +08:00
|
|
|
int "looptest"()
|
2002-02-01 12:24:20 +08:00
|
|
|
begin
|
2002-02-01 12:44:38 +08:00
|
|
|
br label %L2Top
|
2002-02-01 12:24:20 +08:00
|
|
|
|
|
|
|
L2Top:
|
2002-02-01 12:44:38 +08:00
|
|
|
br bool true, label %L2End, label %L2Top
|
|
|
|
|
2002-02-01 12:24:20 +08:00
|
|
|
L2Body:
|
|
|
|
br label %L2Top
|
|
|
|
|
2002-02-01 12:44:38 +08:00
|
|
|
L2End:
|
|
|
|
ret int 0
|
2002-02-01 12:24:20 +08:00
|
|
|
end
|
|
|
|
|