mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
13 lines
309 B
LLVM
13 lines
309 B
LLVM
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin -march=x86 -mcpu=corei7 -mattr=avx | FileCheck %s
|
||
|
|
||
|
@z = common global <4 x float> zeroinitializer, align 16
|
||
|
|
||
|
define void @zero() nounwind ssp {
|
||
|
entry:
|
||
|
; CHECK: vpxor
|
||
|
; CHECK: vmovaps
|
||
|
store <4 x float> zeroinitializer, <4 x float>* @z, align 16
|
||
|
ret void
|
||
|
}
|
||
|
|