1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/GVNPRE/select.ll
2009-09-08 22:34:10 +00:00

18 lines
303 B
LLVM

; RUN: opt %s -gvnpre -S | 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
}