Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Lower / Intrinsics / missing-math-runtime.f90
blob89e383caaad6b34fccd6ab08677eed1d5cb29f54
1 ! There is no quad math runtime available in lowering
2 ! for now. Test that the TODO are emitted correctly.
3 ! RUN: bbc -emit-fir %s -o /dev/null 2>&1 | FileCheck %s
5 complex(16) :: a
6 real(16) :: b
7 ! CHECK: not yet implemented: no math runtime available for 'abs(!fir.complex<16>)'
8 b = abs(a)
9 end