[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / 2012-12-19-NoImplicitFloat.ll
blobe5a64b5ae87ec0f7b621e420213f5dbe283045df
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 { i32*, i32* }
7 define void @test() nounwind noimplicitfloat {
8 entry:
9 ; CHECK-NOT: xmm
10 ; CHECK: ret
11   %0 = load %struct1*, %struct1** undef, align 8
12   %1 = getelementptr inbounds %struct1, %struct1* %0, i64 0, i32 0
13   store i32* null, i32** %1, align 8
14   %2 = getelementptr inbounds %struct1, %struct1* %0, i64 0, i32 1
15   store i32* null, i32** %2, align 8
16   ret void