17 lines · plain
1; RUN: llc -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core2 < %s | FileCheck %s2; Test that we do not introduce vector operations with noimplicitfloat.3; rdar://128793134 5%struct1 = type { ptr, ptr }6 7define void @test() nounwind noimplicitfloat {8entry:9; CHECK-NOT: xmm10; CHECK: ret11 %0 = load ptr, ptr undef, align 812 store ptr null, ptr %0, align 813 %1 = getelementptr inbounds %struct1, ptr %0, i64 0, i32 114 store ptr null, ptr %1, align 815 ret void16}17