25 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc -mcpu=ppc -mtriple=powerpc64-- -mattr=altivec -verify-machineinstrs < %s | FileCheck %s3 4; This would assert because the widened vector op is5; legal/custom, but the scalar op is expanded.6 7define i32 @PR42010(<2 x float> %x) {8; CHECK-LABEL: PR42010:9; CHECK: # %bb.0:10; CHECK-NEXT: addi 3, 1, -3211; CHECK-NEXT: vrfiz 2, 212; CHECK-NEXT: stvx 2, 0, 313; CHECK-NEXT: lfs 0, -28(1)14; CHECK-NEXT: fctiwz 0, 015; CHECK-NEXT: stfd 0, -8(1)16; CHECK-NEXT: lwz 3, -4(1)17; CHECK-NEXT: blr18 %t0 = call <2 x float> @llvm.trunc.v2f32(<2 x float> %x)19 %t1 = extractelement <2 x float> %t0, i32 120 %t2 = fptosi float %t1 to i3221 ret i32 %t222}23 24declare <2 x float> @llvm.trunc.v2f32(<2 x float>)25