forked from OSchip/llvm-project
Check in test changes that I accidentally left out of r72872.
llvm-svn: 72875
This commit is contained in:
parent
60dd76fbc9
commit
1aa86203f6
|
@ -0,0 +1,9 @@
|
|||
; RUN: llvm-as < %s | llc -march=x86-64 -enable-unsafe-fp-math | not grep mulps
|
||||
; RUN: llvm-as < %s | llc -march=x86-64 | grep mulps
|
||||
|
||||
define void @test14(<4 x float>*) nounwind {
|
||||
load <4 x float>* %0, align 1
|
||||
mul <4 x float> %2, zeroinitializer
|
||||
store <4 x float> %3, <4 x float>* %0, align 1
|
||||
ret void
|
||||
}
|
|
@ -83,11 +83,3 @@ define internal void @test13(<4 x float>*) {
|
|||
store <4 x float> %3, <4 x float>* %0, align 1
|
||||
ret void
|
||||
}
|
||||
|
||||
define internal void @test14(<4 x float>*) {
|
||||
load <4 x float>* %0, align 1
|
||||
mul <4 x float> %2, zeroinitializer
|
||||
store <4 x float> %3, <4 x float>* %0, align 1
|
||||
ret void
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue