aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/2012-12-19-NoImplicitFloat.ll
blob: 14e9fcbaa9ddafec11bf2dbab0543c4fe2c38d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llc -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core2 < %s | FileCheck %s
; Test that we do not introduce vector operations with noimplicitfloat.
; rdar://12879313

%struct1 = type { ptr, ptr }

define void @test() nounwind noimplicitfloat {
entry:
; CHECK-NOT: xmm
; CHECK: ret
  %0 = load ptr, ptr undef, align 8
  store ptr null, ptr %0, align 8
  %1 = getelementptr inbounds %struct1, ptr %0, i64 0, i32 1
  store ptr null, ptr %1, align 8
  ret void
}