mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
8 lines
163 B
LLVM
8 lines
163 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine -disable-output
|
||
|
; PR1304
|
||
|
|
||
|
define i64 @bork(<1 x i64> %vec) {
|
||
|
%tmp = extractelement <1 x i64> %vec, i32 0
|
||
|
ret i64 %tmp
|
||
|
}
|