You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
284 B
16 lines
284 B
7 months ago
|
; Make sure we don't crash in LICM.
|
||
|
; RUN: opt %s -licm -opt-bisect-limit=1
|
||
|
|
||
|
define void @patatino() {
|
||
|
for.cond1:
|
||
|
br label %for.body
|
||
|
for.body:
|
||
|
br label %for.cond5
|
||
|
for.cond5:
|
||
|
br i1 true, label %if.end, label %for.end
|
||
|
if.end:
|
||
|
br label %for.cond5
|
||
|
for.end:
|
||
|
br label %for.body
|
||
|
}
|