xref: /llvm-project/flang/test/Lower/Intrinsics/sin_real16.f90 (revision 6398baa425349ce67f39aaa67af86ec2aec96c7c)
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
5
6! CHECK: fir.call @_FortranASinF128({{.*}}){{.*}}: (f128) -> f128
7  real(16) :: a, b
8  b = sin(a)
9end
10