mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
b2ec2956f5
llvm-svn: 37782
18 lines
323 B
LLVM
18 lines
323 B
LLVM
; RUN: llvm-as < %s | opt -gvnpre | llvm-dis | grep b.gvnpre
|
|
|
|
define i32 @extract() {
|
|
entry: ; preds = %cond_false, %entry
|
|
br i1 true, label %cond_true, label %cond_false
|
|
|
|
cond_true:
|
|
br label %end
|
|
|
|
cond_false:
|
|
%a = select i1 true, i32 0, i32 1
|
|
br label %end
|
|
|
|
end:
|
|
%b = select i1 true, i32 0, i32 1
|
|
ret i32 %b
|
|
}
|