mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
e8f2153059
is sabre. llvm-svn: 81528
12 lines
271 B
LLVM
12 lines
271 B
LLVM
; RUN: opt < %s -simplifycfg -S | not grep br
|
|
|
|
define void @foo(i1 %C, i32* %P) {
|
|
br i1 %C, label %T, label %F
|
|
T: ; preds = %0
|
|
store i32 7, i32* %P
|
|
ret void
|
|
F: ; preds = %0
|
|
store i32 7, i32* %P
|
|
ret void
|
|
}
|