brintos

brintos / llvm-project-archived public Read only

0
0
Text · 389 B · d63c4d8 Raw
12 lines · plain
1! REQUIRES: flang-supports-f128-math2! RUN: bbc -emit-fir %s -o - | FileCheck %s3! RUN: bbc --math-runtime=precise -emit-fir %s -o - | FileCheck %s4! RUN: %flang_fc1 -emit-fir %s -o - | FileCheck %s5 6! CHECK: fir.call @_FortranAErfcF128({{.*}}){{.*}}: (f128) -> f1287! CHECK: fir.call @_FortranAErfcF128({{.*}}){{.*}}: (f128) -> f1288  real(16) :: a, b, c9  b = erfc(a)10  c = qerfc(a)11end12