2010-03-31 02:40:13 +02:00
|
|
|
; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
|
2006-03-24 09:02:50 +01:00
|
|
|
|
2011-11-07 20:15:58 +01:00
|
|
|
; CHECK: foo
|
2010-03-31 02:40:13 +02:00
|
|
|
; CHECK: xorps
|
2008-02-21 08:42:26 +01:00
|
|
|
define void @foo(<4 x float>* %P) {
|
|
|
|
%T = load <4 x float>* %P ; <<4 x float>> [#uses=1]
|
2009-06-05 00:49:04 +02:00
|
|
|
%S = fadd <4 x float> zeroinitializer, %T ; <<4 x float>> [#uses=1]
|
2008-02-21 08:42:26 +01:00
|
|
|
store <4 x float> %S, <4 x float>* %P
|
|
|
|
ret void
|
2006-03-24 09:02:50 +01:00
|
|
|
}
|
|
|
|
|
2011-11-07 20:15:58 +01:00
|
|
|
; CHECK: bar
|
2010-03-31 02:40:13 +02:00
|
|
|
; CHECK: pxor
|
2008-02-21 08:42:26 +01:00
|
|
|
define void @bar(<4 x i32>* %P) {
|
|
|
|
%T = load <4 x i32>* %P ; <<4 x i32>> [#uses=1]
|
|
|
|
%S = add <4 x i32> zeroinitializer, %T ; <<4 x i32>> [#uses=1]
|
|
|
|
store <4 x i32> %S, <4 x i32>* %P
|
|
|
|
ret void
|
2006-03-24 09:02:50 +01:00
|
|
|
}
|
2008-02-21 08:42:26 +01:00
|
|
|
|
2011-11-07 20:15:58 +01:00
|
|
|
; Without any type hints from operations, we fall back to the smaller xorps.
|
|
|
|
; The IR type <4 x i32> is ignored.
|
|
|
|
; CHECK: untyped_zero
|
|
|
|
; CHECK: xorps
|
|
|
|
; CHECK: movaps
|
|
|
|
define void @untyped_zero(<4 x i32>* %p) {
|
|
|
|
entry:
|
|
|
|
store <4 x i32> zeroinitializer, <4 x i32>* %p, align 16
|
|
|
|
ret void
|
|
|
|
}
|