18 lines · plain
1; RUN: llc < %s -mtriple=i686-- -mcpu=penryn | FileCheck %s2 3define void @a(ptr %x) nounwind {4entry:5 %tmp2 = load <4 x float>, ptr %x, align 16 %inv = call <4 x float> @llvm.x86.sse.rcp.ps(<4 x float> %tmp2)7 store <4 x float> %inv, ptr %x, align 18 ret void9}10 11; CHECK-LABEL: a:12; CHECK: movups13; CHECK: movups14; CHECK-NOT: movups15; CHECK: ret16 17declare <4 x float> @llvm.x86.sse.rcp.ps(<4 x float>)18