diff options
Diffstat (limited to 'llvm/test/DebugInfo/PDB/Inputs/empty.cpp')
-rw-r--r-- | llvm/test/DebugInfo/PDB/Inputs/empty.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/test/DebugInfo/PDB/Inputs/empty.cpp b/llvm/test/DebugInfo/PDB/Inputs/empty.cpp new file mode 100644 index 00000000000..f27ea18832e --- /dev/null +++ b/llvm/test/DebugInfo/PDB/Inputs/empty.cpp @@ -0,0 +1,7 @@ +// Build with "cl.exe /Zi empty.cpp /link /debug /nodefaultlib /entry:main"
+
+void *__purecall = 0;
+
+int main() {
+ return 42;
+}
|