Enable all Hexagon tests.
[oota-llvm.git] / test / CodeGen / X86 / sse4a.ll
1 ; RUN: llc < %s -mtriple=i686-apple-darwin9 -mattr=sse4a | FileCheck %s
2
3 define void @test1(float* %p, <4 x float> %a) nounwind optsize ssp {
4 ; CHECK: movntss
5 entry:
6   tail call void @llvm.x86.sse4a.movnt.ss(float* %p, <4 x float> %a) nounwind
7   ret void
8 }
9
10 declare void @llvm.x86.sse4a.movnt.ss(float*, <4 x float>)
11
12 define void @test2(double* %p, <2 x double> %a) nounwind optsize ssp {
13 ; CHECK: movntsd
14 entry:
15   tail call void @llvm.x86.sse4a.movnt.sd(double* %p, <2 x double> %a) nounwind
16   ret void
17 }
18
19 declare void @llvm.x86.sse4a.movnt.sd(double*, <2 x double>)