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
[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git]
/
lldb
/
test
/
Shell
/
SymbolFile
/
PDB
/
Inputs
/
FuncSymbols.cpp
blob
ccccf6ffd1085366ddee46cd1c7b52020f78a28d
1
// Static function
2
namespace
{
3
static long
StaticFunction
(
int
a
)
4
{
5
return
2
;
6
}
7
}
8
9
// Inlined function
10
static
inline
int
InlinedFunction
(
long
a
) {
return
10
; }
11
12
void
FunctionCall
()
13
{
14
StaticFunction
(
1
);
15
InlinedFunction
(
1
);
16
}