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
371 B
16 lines
371 B
7 months ago
|
; RUN: opt -instsimplify -S < %s | FileCheck %s
|
||
|
|
||
|
define void @foo() nounwind {
|
||
|
br i1 undef, label %1, label %4
|
||
|
|
||
|
; <label>:1 ; preds = %1, %0
|
||
|
; CHECK-NOT: phi
|
||
|
; CHECK-NOT: sub
|
||
|
%2 = phi i32 [ %3, %1 ], [ undef, %0 ]
|
||
|
%3 = sub i32 0, undef
|
||
|
br label %1
|
||
|
|
||
|
; <label>:4 ; preds = %0
|
||
|
ret void
|
||
|
}
|