diff options
Diffstat (limited to 'lld/COFF/Symbols.cpp')
-rw-r--r-- | lld/COFF/Symbols.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lld/COFF/Symbols.cpp b/lld/COFF/Symbols.cpp index 4f7d9191c13..883666e5780 100644 --- a/lld/COFF/Symbols.cpp +++ b/lld/COFF/Symbols.cpp @@ -138,6 +138,9 @@ std::string SymbolBody::getDebugName() { if (auto *D = dyn_cast<DefinedCOFF>(this)) { N += " "; N += D->File->getShortName(); + } else if (auto *D = dyn_cast<DefinedBitcode>(this)) { + N += " "; + N += D->File->getShortName(); } return N; } |