diff --git a/flang/lib/Lower/IntrinsicCall.cpp b/flang/lib/Lower/IntrinsicCall.cpp --- a/flang/lib/Lower/IntrinsicCall.cpp +++ b/flang/lib/Lower/IntrinsicCall.cpp @@ -1208,7 +1208,6 @@ {"aint", "llvm.trunc.f32", genF32F32FuncType, genLibCall}, {"aint", "llvm.trunc.f64", genF64F64FuncType, genLibCall}, {"aint", "llvm.trunc.f80", genF80F80FuncType, genLibCall}, - {"aint", "llvm.trunc.f128", genF128F128FuncType, genLibCall}, // llvm.round behaves the same way as libm's round. {"anint", "llvm.round.f32", genF32F32FuncType, genMathOp}, @@ -1216,8 +1215,6 @@ genMathOp}, {"anint", "llvm.round.f80", genF80F80FuncType, genMathOp}, - {"anint", "llvm.round.f128", genF128F128FuncType, - genMathOp}, {"atan", "atanf", genF32F32FuncType, genMathOp}, {"atan", "atan", genF64F64FuncType, genMathOp}, {"atan2", "atan2f", genF32F32F32FuncType, genMathOp}, diff --git a/flang/test/Lower/Intrinsics/aint.f90 b/flang/test/Lower/Intrinsics/aint.f90 --- a/flang/test/Lower/Intrinsics/aint.f90 +++ b/flang/test/Lower/Intrinsics/aint.f90 @@ -39,16 +39,8 @@ b = aint(a) end subroutine -! CHECK-LABEL: func.func @_QPaint_test_real16( -! CHECK-SAME: %[[VAL_0:.*]]: !fir.ref {fir.bindc_name = "a"}, -! CHECK-SAME: %[[VAL_1:.*]]: !fir.ref {fir.bindc_name = "b"}) { -! CHECK: %[[VAL_2:.*]] = fir.load %[[VAL_0]] : !fir.ref -! CHECK: %[[VAL_3:.*]] = fir.call @llvm.trunc.f128(%[[VAL_2]]) : (f128) -> f128 -! CHECK: fir.store %[[VAL_3]] to %[[VAL_1]] : !fir.ref -! CHECK: return -! CHECK: } - -subroutine aint_test_real16(a, b) - real(16) :: a, b - b = aint(a) -end subroutine +! TODO: wait until fp128 is supported well in llvm.trunc +!subroutine aint_test_real16(a, b) +! real(16) :: a, b +! b = aint(a) +!end subroutine diff --git a/flang/test/Lower/Intrinsics/anint.f90 b/flang/test/Lower/Intrinsics/anint.f90 --- a/flang/test/Lower/Intrinsics/anint.f90 +++ b/flang/test/Lower/Intrinsics/anint.f90 @@ -42,16 +42,8 @@ b = anint(a) end subroutine -! CHECK-LABEL: func.func @_QPanint_test_real16( -! CHECK-SAME: %[[VAL_0:.*]]: !fir.ref {fir.bindc_name = "a"}, -! CHECK-SAME: %[[VAL_1:.*]]: !fir.ref {fir.bindc_name = "b"}) { -! CHECK: %[[VAL_2:.*]] = fir.load %[[VAL_0]] : !fir.ref -! CHECK: %[[VAL_3:.*]] = "llvm.intr.round"(%[[VAL_2]]) : (f128) -> f128 -! CHECK: fir.store %[[VAL_3]] to %[[VAL_1]] : !fir.ref -! CHECK: return -! CHECK: } - -subroutine anint_test_real16(a, b) - real(16) :: a, b - b = anint(a) -end subroutine +! TODO: wait until fp128 is supported well in llvm.round +!subroutine anint_test_real16(a, b) +! real(16) :: a, b +! b = anint(a) +!end subroutine diff --git a/flang/test/Lower/math-lowering.f90 b/flang/test/Lower/math-lowering.f90 --- a/flang/test/Lower/math-lowering.f90 +++ b/flang/test/Lower/math-lowering.f90 @@ -85,13 +85,11 @@ ! ALL-LABEL: @_QPtest_real10 ! ALL: {{%[A-Za-z0-9._]+}} = fir.call @llvm.trunc.f80({{%[A-Za-z0-9._]+}}) : (f80) -> f80 -function test_real16(x) - real(16) :: x, test_real16 - test_real16 = aint(x) -end function - -! ALL-LABEL: @_QPtest_real16 -! ALL: {{%[A-Za-z0-9._]+}} = fir.call @llvm.trunc.f128({{%[A-Za-z0-9._]+}}) : (f128) -> f128 +! TODO: wait until fp128 is supported well in llvm.trunc +!function test_real16(x) +! real(16) :: x, test_real16 +! test_real16 = aint(x) +!end function //--- anint.f90 ! RUN: bbc -emit-fir %t/anint.f90 -o - --math-runtime=fast | FileCheck --check-prefixes=ALL,FAST %t/anint.f90 @@ -131,15 +129,11 @@ ! RELAXED: {{%[A-Za-z0-9._]+}} = "llvm.intr.round"({{%[A-Za-z0-9._]+}}) : (f80) -> f80 ! PRECISE: {{%[A-Za-z0-9._]+}} = fir.call @llvm.round.f80({{%[A-Za-z0-9._]+}}) : (f80) -> f80 -function test_real16(x) - real(16) :: x, test_real16 - test_real16 = anint(x) -end function - -! ALL-LABEL: @_QPtest_real16 -! FAST: {{%[A-Za-z0-9._]+}} = "llvm.intr.round"({{%[A-Za-z0-9._]+}}) : (f128) -> f128 -! RELAXED: {{%[A-Za-z0-9._]+}} = "llvm.intr.round"({{%[A-Za-z0-9._]+}}) : (f128) -> f128 -! PRECISE: {{%[A-Za-z0-9._]+}} = fir.call @llvm.round.f128({{%[A-Za-z0-9._]+}}) : (f128) -> f128 +! TODO: wait until fp128 is supported well in llvm.round +!function test_real16(x) +! real(16) :: x, test_real16 +! test_real16 = anint(x) +!end function //--- atan.f90 ! RUN: bbc -emit-fir %t/atan.f90 -o - --math-runtime=fast | FileCheck --check-prefixes=ALL,FAST %t/atan.f90