repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Integration
/
debug-external-linkage-name.f90
blob
c7fdf846b7dd3a97ed30f239118a0af4b06c6b03
1
! RUN: %flang_fc1 -emit-llvm -debug-info-kind=standalone %s -o - | FileCheck %s
2
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
8
9
!CHECK: !DISubprogram(name: "sub", linkageName: "sub_"{{.*}})
10