mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
d336de318e
(movzx/movsx) because they give more information. Revert that part of the patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129498 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
329 B
LLVM
13 lines
329 B
LLVM
; RUN: llc < %s -march=x86 -mattr=+sse42 | FileCheck %s
|
|
; CHECK: movswl
|
|
; CHECK: movswl
|
|
|
|
; sign extension v2i32 to v2i16
|
|
|
|
define void @convert(<2 x i32>* %dst.addr, <2 x i16> %src) nounwind {
|
|
entry:
|
|
%signext = sext <2 x i16> %src to <2 x i32> ; <<12 x i8>> [#uses=1]
|
|
store <2 x i32> %signext, <2 x i32>* %dst.addr
|
|
ret void
|
|
}
|