[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Integration / debug-external-linkage-name.f90
blobc7fdf846b7dd3a97ed30f239118a0af4b06c6b03
1 ! RUN: %flang_fc1 -emit-llvm -debug-info-kind=standalone %s -o - | FileCheck %s
3 ! Test that correct linkage name is generated in the debug info.
4 subroutine sub(a)
5 integer :: a
6 return a+1
7 end
9 !CHECK: !DISubprogram(name: "sub", linkageName: "sub_"{{.*}})