mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
dd7a300c10
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177130 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
294 B
LLVM
12 lines
294 B
LLVM
; RUN: llc < %s -mcpu=corei7-avx | FileCheck %s
|
|
|
|
; Make sure that we are not generating a movaps because the vector is aligned to 1.
|
|
;CHECK: @foo
|
|
;CHECK: xor
|
|
;CHECK-NEXT: vmovups
|
|
;CHECK-NEXT: ret
|
|
define void @foo() {
|
|
store <16 x i16> zeroinitializer, <16 x i16>* undef, align 1
|
|
ret void
|
|
}
|