diff options
Diffstat (limited to 'lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp')
-rw-r--r-- | lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp b/lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp new file mode 100644 index 00000000000..fa0030bacbf --- /dev/null +++ b/lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp @@ -0,0 +1,9 @@ +#include "FunctionLevelLinkingTest.h" + +int foo() { + return 0; +} + +int main() { + return foo() + bar() + baz(); +} |