[mlir][NFC] Avoid using braced initializer lists to call a constructor. (#123714)
[llvm-project.git] / flang / test / Lower / Intrinsics / acos_complex16.f90
blob761a8661645e27d10e39a1fd3d601439bc89a271
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 @_FortranACAcosF128({{.*}}){{.*}}: (complex<f128>) -> complex<f128>
6 complex(16) :: a, b
7 b = acos(a)
8 end