diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:09:23 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:09:23 +0000 |
commit | f73363f1dd94996356cefbf24388f561891acf0b (patch) | |
tree | e3c31248bdb36eaec5fd833490d4278162dba2a0 /lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp | |
parent | 160ee69dd7ae18978f4068116777639ea98dc951 (diff) |
Notes
Diffstat (limited to 'lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp')
-rw-r--r-- | lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp b/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp new file mode 100644 index 000000000000..fa0030bacbf3 --- /dev/null +++ b/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp @@ -0,0 +1,9 @@ +#include "FunctionLevelLinkingTest.h" + +int foo() { + return 0; +} + +int main() { + return foo() + bar() + baz(); +} |