forked from OSchip/llvm-project
11 lines
313 B
Fortran
11 lines
313 B
Fortran
! RUN: bbc -outline-intrinsics %s -o - | tco --disable-llvm --mlir-print-ir-after=fir-to-llvm-ir 2>&1 | FileCheck %s
|
|
|
|
! Test properties of intrinsic function wrappers
|
|
|
|
! Test that intrinsic wrappers have internal linkage
|
|
function foo(x)
|
|
foo = acos(x)
|
|
end function
|
|
|
|
! CHECK: llvm.func internal @fir.acos.f32.f32
|