xref: /freebsd/contrib/llvm-project/lld/MachO/Symbols.cpp (revision 6be3386466ab79a84b48429ae66244f21526d3df)
1 //===- Symbols.cpp --------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "Symbols.h"
10 #include "InputFiles.h"
11 
12 using namespace llvm;
13 using namespace lld;
14 using namespace lld::macho;
15 
16 void LazySymbol::fetchArchiveMember() { file->fetch(sym); }
17 
18 // Returns a symbol for an error message.
19 std::string lld::toString(const Symbol &sym) {
20   if (Optional<std::string> s = demangleItanium(sym.getName()))
21     return *s;
22   return std::string(sym.getName());
23 }
24