mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
6fe4e51547
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141667 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
301 B
LLVM
12 lines
301 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -promote-elements -mattr=-sse41
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define void @m387(<2 x i8>* %p, <2 x i16>* %q) {
|
|
%t = load <2 x i8>* %p
|
|
%r = sext <2 x i8> %t to <2 x i16>
|
|
store <2 x i16> %r, <2 x i16>* %q
|
|
ret void
|
|
}
|
|
|