[mlir][NFC] Avoid using braced initializer lists to call a constructor. (#123714)
[llvm-project.git] / flang / test / Lower / Intrinsics / acosh_real16.f90
blobde787e3d2b0fb7d6c552196fe294fca0662a1ca6
1 ! REQUIRES: flang-supports-f128-math
2 ! RUN: bbc -emit-fir %s -o - | FileCheck %s
3 ! RUN: bbc --math-runtime=precise -emit-fir %s -o - | FileCheck %s
4 ! RUN: %flang_fc1 -emit-fir %s -o - | FileCheck %s
6 ! CHECK: fir.call @_FortranAAcoshF128({{.*}}){{.*}}: (f128) -> f128
7 real(16) :: a, b
8 b = acosh(a)
9 end