mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
cc389e016c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37744 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
472 B
LLVM
19 lines
472 B
LLVM
; RUN: llvm-as < %s | opt -gvnpre | llvm-dis | grep b.gvnpre
|
|
|
|
define i32 @extract() {
|
|
entry: ; preds = %cond_false, %entry
|
|
%foo = add <2 x i32> < i32 1, i32 1 >, < i32 1, i32 1 >
|
|
br i1 true, label %cond_true, label %cond_false
|
|
|
|
cond_true:
|
|
br label %end
|
|
|
|
cond_false:
|
|
%a = shufflevector <2 x i32> %foo, <2 x i32> undef, <2 x i32> < i32 0, i32 1 >
|
|
br label %end
|
|
|
|
end:
|
|
%b = shufflevector <2 x i32> %foo, <2 x i32> undef, <2 x i32> < i32 0, i32 1 >
|
|
ret i32 0
|
|
}
|