1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py 2; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s --implicit-check-not IMPLICIT_DEF 3 4define void @foo(<2 x float>* %p) { 5; CHECK-LABEL: foo: 6; CHECK: # %bb.0: 7; CHECK-NEXT: xorps %xmm0, %xmm0 8; CHECK-NEXT: movlps %xmm0, (%rdi) 9; CHECK-NEXT: retq 10 %t = insertelement <2 x float> undef, float 0.0, i32 0 11 %v = insertelement <2 x float> %t, float 0.0, i32 1 12 br label %bb8 13 14bb8: 15 store <2 x float> %v, <2 x float>* %p 16 ret void 17} 18