aboutsummaryrefslogtreecommitdiff
path: root/COFF
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-08-11 21:14:01 +0000
committerZachary Turner <zturner@google.com>2017-08-11 21:14:01 +0000
commitea82cf3743fad854d6b414f11f9f489232c0d96d (patch)
treea66c084da9aab0ebe04f42aed2a9d43e58bf9917 /COFF
parentd7c4d25f1b0c40751b4dddecb929563696896e6a (diff)
Fix some broken tests.
These were pending in a separate patch but I forgot to squash them before comitting, and this one didn't go through. git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@310764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'COFF')
-rw-r--r--COFF/PDB.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/COFF/PDB.cpp b/COFF/PDB.cpp
index 74fc805b2..8e891cfe2 100644
--- a/COFF/PDB.cpp
+++ b/COFF/PDB.cpp
@@ -739,10 +739,10 @@ static void addCommonLinkerModuleSymbols(StringRef Path,
ONS.Signature = 0;
CS.Machine = Config->is64() ? CPUType::X64 : CPUType::Intel80386;
- // Interestingly, if we set the string to 0.0.0.0, then when trying to view
- // local variables WinDbg emits an error that private symbols are not present.
- // By setting this to a valid MSVC linker version string, local variables are
- // displayed properly. As such, even though it is not representative of
+ // Interestingly, if we set the string to 0.0.0.0, then when trying to view
+ // local variables WinDbg emits an error that private symbols are not present.
+ // By setting this to a valid MSVC linker version string, local variables are
+ // displayed properly. As such, even though it is not representative of
// LLVM's version information, we need this for compatibility.
CS.Flags = CompileSym3Flags::None;
CS.VersionBackendBuild = 25019;