bolt/deps/llvm-18.1.8/lldb/test/Shell/SymbolFile/PDB/Inputs/FuncSymbols.cpp

17 lines
229 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// Static function
namespace {
static long StaticFunction(int a)
{
return 2;
}
}
// Inlined function
static inline int InlinedFunction(long a) { return 10; }
void FunctionCall()
{
StaticFunction(1);
InlinedFunction(1);
}