mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-21 03:05:26 -04:00
[dsymutil] Rename llvm-dsymutil -> dsymutil
Now that almost all functionality of Apple's dsymutil has been upstreamed, the open source variant can be used as a drop in replacement. Hence we feel it's no longer necessary to have the llvm prefix. Differential revision: https://reviews.llvm.org/D44527 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327790 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -244,11 +244,10 @@ MappingTraits<dsymutil::DebugMapObject>::YamlDMO::denormalize(IO &IO) {
|
||||
if (auto EC = ErrOrObjectFiles.getError()) {
|
||||
warn_ostream() << "Unable to open " << Path << " " << EC.message() << '\n';
|
||||
} else if (auto ErrOrObjectFile = BinHolder.Get(Ctxt.BinaryTriple)) {
|
||||
// Rewrite the object file symbol addresses in the debug map. The
|
||||
// YAML input is mainly used to test llvm-dsymutil without
|
||||
// requiring binaries checked-in. If we generate the object files
|
||||
// during the test, we can't hard-code the symbols addresses, so
|
||||
// look them up here and rewrite them.
|
||||
// Rewrite the object file symbol addresses in the debug map. The YAML
|
||||
// input is mainly used to test dsymutil without requiring binaries
|
||||
// checked-in. If we generate the object files during the test, we can't
|
||||
// hard-code the symbols addresses, so look them up here and rewrite them.
|
||||
for (const auto &Sym : ErrOrObjectFile->symbols()) {
|
||||
uint64_t Address = Sym.getValue();
|
||||
Expected<StringRef> Name = Sym.getName();
|
||||
|
||||
Reference in New Issue
Block a user