Optimized FCMP_OEQ and FCMP_UNE for x86.
[oota-llvm.git] / test / CodeGen / X86 / sse-align-0.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | not grep mov
2
3 define <4 x float> @foo(<4 x float>* %p, <4 x float> %x) nounwind {
4   %t = load <4 x float>* %p
5   %z = mul <4 x float> %t, %x
6   ret <4 x float> %z
7 }
8 define <2 x double> @bar(<2 x double>* %p, <2 x double> %x) nounwind {
9   %t = load <2 x double>* %p
10   %z = mul <2 x double> %t, %x
11   ret <2 x double> %z
12 }