mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 22:23:10 +00:00
[llvm-symbolizer] Minor typedef cleanup. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -82,13 +82,10 @@ private:
|
||||
}
|
||||
|
||||
// Owns module info objects.
|
||||
typedef std::map<std::string, ModuleInfo *> ModuleMapTy;
|
||||
ModuleMapTy Modules;
|
||||
typedef std::map<std::string, BinaryPair> BinaryMapTy;
|
||||
BinaryMapTy BinaryForPath;
|
||||
typedef std::map<std::pair<MachOUniversalBinary *, std::string>, ObjectFile *>
|
||||
ObjectFileForArchMapTy;
|
||||
ObjectFileForArchMapTy ObjectFileForArch;
|
||||
std::map<std::string, ModuleInfo *> Modules;
|
||||
std::map<std::string, BinaryPair> BinaryForPath;
|
||||
std::map<std::pair<MachOUniversalBinary *, std::string>, ObjectFile *>
|
||||
ObjectFileForArch;
|
||||
|
||||
Options Opts;
|
||||
static const char kBadString[];
|
||||
@@ -122,9 +119,8 @@ private:
|
||||
return s1.Addr < s2.Addr;
|
||||
}
|
||||
};
|
||||
typedef std::map<SymbolDesc, StringRef> SymbolMapTy;
|
||||
SymbolMapTy Functions;
|
||||
SymbolMapTy Objects;
|
||||
std::map<SymbolDesc, StringRef> Functions;
|
||||
std::map<SymbolDesc, StringRef> Objects;
|
||||
};
|
||||
|
||||
} // namespace symbolize
|
||||
|
||||
Reference in New Issue
Block a user