mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
6969a673e9
llvm-svn: 157925
12 lines
283 B
LLVM
12 lines
283 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -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
|
|
}
|
|
|