[Support] Recycler: Implement move constructor (#120555)
[llvm-project.git] / flang / test / Lower / Intrinsics / acosh_complex16.f90
blob72944ed55bb7e2bdab68320e1609f0006f2436a1
1 ! RUN: bbc -emit-fir %s -o - | FileCheck %s
2 ! RUN: bbc --math-runtime=precise -emit-fir %s -o - | FileCheck %s
3 ! RUN: %flang_fc1 -emit-fir %s -o - | FileCheck %s
5 ! CHECK: fir.call @_FortranACAcoshF128({{.*}}){{.*}}: (complex<f128>) -> complex<f128>
6 complex(16) :: a, b
7 b = acosh(a)
8 end