45 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mcpu=yonah -relocation-model=static | FileCheck %s3 4target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"5target triple = "i686-apple-darwin8"6 7%f4 = type <4 x float>8 9@G = external global { float,float,float,float}, align 1610 11define %f4 @test1(float %W, float %X, float %Y, float %Z) nounwind {12; CHECK-LABEL: test1:13; CHECK: ## %bb.0:14; CHECK-NEXT: movaps {{[0-9]+}}(%esp), %xmm015; CHECK-NEXT: retl16 %tmp = insertelement %f4 undef, float %W, i32 017 %tmp2 = insertelement %f4 %tmp, float %X, i32 118 %tmp4 = insertelement %f4 %tmp2, float %Y, i32 219 %tmp6 = insertelement %f4 %tmp4, float %Z, i32 320 ret %f4 %tmp621}22 23define %f4 @test2() nounwind {24; CHECK-LABEL: test2:25; CHECK: ## %bb.0:26; CHECK-NEXT: movaps _G, %xmm027; CHECK-NEXT: retl28 %Wp = getelementptr { float,float,float,float}, ptr @G, i32 0, i32 029 %Xp = getelementptr { float,float,float,float}, ptr @G, i32 0, i32 130 %Yp = getelementptr { float,float,float,float}, ptr @G, i32 0, i32 231 %Zp = getelementptr { float,float,float,float}, ptr @G, i32 0, i32 332 33 %W = load float, ptr %Wp34 %X = load float, ptr %Xp35 %Y = load float, ptr %Yp36 %Z = load float, ptr %Zp37 38 %tmp = insertelement %f4 undef, float %W, i32 039 %tmp2 = insertelement %f4 %tmp, float %X, i32 140 %tmp4 = insertelement %f4 %tmp2, float %Y, i32 241 %tmp6 = insertelement %f4 %tmp4, float %Z, i32 342 ret %f4 %tmp643}44 45