1 ; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-linux-gnu < %s | FileCheck %s
3 declare float @fmaxf(float, float)
4 declare double @fmax(double, double)
5 declare ppc_fp128 @fmaxl(ppc_fp128, ppc_fp128)
6 declare float @llvm.maxnum.f32(float, float)
7 declare double @llvm.maxnum.f64(double, double)
8 declare ppc_fp128 @llvm.maxnum.ppcf128(ppc_fp128, ppc_fp128)
10 declare <2 x float> @llvm.maxnum.v2f32(<2 x float>, <2 x float>)
11 declare <4 x float> @llvm.maxnum.v4f32(<4 x float>, <4 x float>)
12 declare <8 x float> @llvm.maxnum.v8f32(<8 x float>, <8 x float>)
14 ; CHECK-LABEL: @test_fmaxf
16 define float @test_fmaxf(float %x, float %y) {
17 %z = call float @fmaxf(float %x, float %y) readnone
21 ; CHECK-LABEL: @test_fmax
23 define double @test_fmax(double %x, double %y) {
24 %z = call double @fmax(double %x, double %y) readnone
28 ; CHECK-LABEL: @test_fmaxl
30 define ppc_fp128 @test_fmaxl(ppc_fp128 %x, ppc_fp128 %y) {
31 %z = call ppc_fp128 @fmaxl(ppc_fp128 %x, ppc_fp128 %y) readnone
35 ; CHECK-LABEL: @test_intrinsic_fmaxf
37 define float @test_intrinsic_fmaxf(float %x, float %y) {
38 %z = call float @llvm.maxnum.f32(float %x, float %y) readnone
42 ; CHECK-LABEL: @test_intrinsic_fmax
44 define double @test_intrinsic_fmax(double %x, double %y) {
45 %z = call double @llvm.maxnum.f64(double %x, double %y) readnone
49 ; CHECK-LABEL: @test_intrinsic_fmaxl
51 define ppc_fp128 @test_intrinsic_fmaxl(ppc_fp128 %x, ppc_fp128 %y) {
52 %z = call ppc_fp128 @llvm.maxnum.ppcf128(ppc_fp128 %x, ppc_fp128 %y) readnone
56 ; CHECK-LABEL: @test_intrinsic_fmaxf_v2f32
59 define <2 x float> @test_intrinsic_fmaxf_v2f32(<2 x float> %x, <2 x float> %y) {
60 %z = call <2 x float> @llvm.maxnum.v2f32(<2 x float> %x, <2 x float> %y) readnone
64 ; CHECK-LABEL: @test_intrinsic_fmaxf_v4f32
69 define <4 x float> @test_intrinsic_fmaxf_v4f32(<4 x float> %x, <4 x float> %y) {
70 %z = call <4 x float> @llvm.maxnum.v4f32(<4 x float> %x, <4 x float> %y) readnone
74 ; CHECK-LABEL: @test_intrinsic_fmaxf_v8f32
83 define <8 x float> @test_intrinsic_fmaxf_v8f32(<8 x float> %x, <8 x float> %y) {
84 %z = call <8 x float> @llvm.maxnum.v8f32(<8 x float> %x, <8 x float> %y) readnone