Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lld
diff options
context:
space:
mode:
authorJez Ng <jezng@fb.com>2022-10-14 22:28:15 +0300
committerJez Ng <jezng@fb.com>2022-10-14 22:28:47 +0300
commit316123a2fce299ab86bceea67049b089efb11b9b (patch)
tree7330d532ae676016bfe4bec109ca5d9e4ac52fcc /lld
parent1cfae76ed91a91aac9444e5a07d31965aae9a628 (diff)
[lld-macho][nfc] lld/Common's `demangle()` is redundant for Mach-O
The only thing that the Common implementation does is a check for `config->demangle`, but {D135189} added that check to `maybeDemangleSymbol`, so there's no need to go through `Common`... Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D135942
Diffstat (limited to 'lld')
-rw-r--r--lld/MachO/Symbols.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/MachO/Symbols.cpp b/lld/MachO/Symbols.cpp
index a3553769d6f1..e7a4e4089a74 100644
--- a/lld/MachO/Symbols.cpp
+++ b/lld/MachO/Symbols.cpp
@@ -9,7 +9,7 @@
#include "Symbols.h"
#include "InputFiles.h"
#include "SyntheticSections.h"
-#include "lld/Common/Strings.h"
+#include "llvm/Demangle/Demangle.h"
using namespace llvm;
using namespace lld;
@@ -32,9 +32,9 @@ static_assert(sizeof(SymbolUnion) == sizeof(Defined),
static std::string maybeDemangleSymbol(StringRef symName) {
if (config->demangle) {
symName.consume_front("_");
- return demangle(symName, true);
+ return demangle(symName.str());
}
- return std::string(symName);
+ return symName.str();
}
std::string lld::toString(const Symbol &sym) {