mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
8838410a75
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180776 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
220 B
LLVM
10 lines
220 B
LLVM
; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+mmx,+sse2 | FileCheck %s
|
|
|
|
; CHECK-NOT: movl
|
|
|
|
define <8 x i8> @a(i8 zeroext %x) nounwind {
|
|
%r = insertelement <8 x i8> undef, i8 %x, i32 0
|
|
ret <8 x i8> %r
|
|
}
|
|
|