Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / 2012-12-19-NoImplicitFloat.ll
blob14e9fcbaa9ddafec11bf2dbab0543c4fe2c38d87
1 ; RUN: llc -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core2 < %s | FileCheck %s
2 ; Test that we do not introduce vector operations with noimplicitfloat.
3 ; rdar://12879313
5 %struct1 = type { ptr, ptr }
7 define void @test() nounwind noimplicitfloat {
8 entry:
9 ; CHECK-NOT: xmm
10 ; CHECK: ret
11   %0 = load ptr, ptr undef, align 8
12   store ptr null, ptr %0, align 8
13   %1 = getelementptr inbounds %struct1, ptr %0, i64 0, i32 1
14   store ptr null, ptr %1, align 8
15   ret void