diff options
author | Zachary Turner <zturner@google.com> | 2015-02-22 06:47:32 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-22 06:47:32 +0000 |
commit | a54b7ddb25bda65696b7c2af8b5edab6ca85445c (patch) | |
tree | cf4fd4827cfb17ee69735be3e26b36b92aa5be3f /llvm/test/DebugInfo/PDB/Inputs/empty.cpp | |
parent | a65298af650dd10cc8fa439e46d1a1ec4d1e5555 (diff) | |
download | bcm5719-llvm-a54b7ddb25bda65696b7c2af8b5edab6ca85445c.tar.gz bcm5719-llvm-a54b7ddb25bda65696b7c2af8b5edab6ca85445c.zip |
[llvm-pdbdump] Resubmit "Add some tests for llvm-pdbdump".
NOTE: This patch intentionally breaks the build. It attempts
to resubmit r230083, but with some debug logging in the CMake
and lit config files to determine why certain bots do not
correctly disable the DIA tests when DIA is not available.
After a sufficient number of bots fail, this patch will either
be reverted or, if the cause of the failure becomes obvious,
a fix submitted with the log statements removed.
llvm-svn: 230161
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..6021aca7bfc --- /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; +} |