xref: /llvm-project/llvm/test/CodeGen/PowerPC/pr45709.ll (revision e6b85c30276d8e35ed302b2defd7d17637d6edb3)
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-unknown \
3; RUN:     -mcpu=pwr6 -ppc-asm-full-reg-names -mattr=-vsx \
4; RUN:     -ppc-vsr-nums-as-vr < %s | FileCheck %s
5
6; There is code in the SDAG to expand FMAX/FMIN with fast flags to SELECT_CC.
7; On PPC, we had SELECT_CC legalized using Promote for all vector types
8; (including the type that they are all promoted to - which caused an infinite
9; loop in legalization). This test just ensures that we terminate on such input.
10define dso_local void @_ZN1a1bEv(<4 x float> %in) local_unnamed_addr #0 align 2 {
11; CHECK-LABEL: _ZN1a1bEv:
12; CHECK:       # %bb.0:
13; CHECK-NEXT:    bc 12, 4*cr5+lt, .LBB0_4
14; CHECK-NEXT:    b .LBB0_1
15; CHECK-NEXT:  .LBB0_1: # %.preheader
16; CHECK-NEXT:    b .LBB0_2
17; CHECK-NEXT:  .LBB0_2:
18; CHECK-NEXT:    b .LBB0_3
19; CHECK-NEXT:  .LBB0_3:
20; CHECK-NEXT:  .LBB0_4:
21; CHECK-NEXT:    blr
22  br i1 undef, label %7, label %1
23
241:                                                ; preds = %1, %0
25  br i1 undef, label %2, label %1
26
272:                                                ; preds = %1
28  %3 = shufflevector <4 x float> %in, <4 x float> undef, <4 x i32> <i32 2, i32 3, i32 1, i32 0>
29  %4 = call fast <4 x float> @llvm.maxnum.v4f32(<4 x float> %3, <4 x float> zeroinitializer)
30  %5 = call fast <4 x float> @llvm.maxnum.v4f32(<4 x float> %4, <4 x float> undef)
31  %6 = extractelement <4 x float> %5, i32 0
32  br label %7
33
347:                                                ; preds = %2, %0
35  %8 = phi float [ %6, %2 ], [ undef, %0 ]
36  %9 = fcmp fast une float %8, 0.000000e+00
37  ret void
38}
39
40declare <4 x float> @llvm.maxnum.v4f32(<4 x float>, <4 x float>) #0
41
42attributes #0 = { nounwind optnone noinline }
43