diff options
Diffstat (limited to 'lld/ELF/CallGraphSort.cpp')
-rw-r--r-- | lld/ELF/CallGraphSort.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/CallGraphSort.cpp b/lld/ELF/CallGraphSort.cpp index 8550177b297..10fc6bf4416 100644 --- a/lld/ELF/CallGraphSort.cpp +++ b/lld/ELF/CallGraphSort.cpp @@ -92,8 +92,8 @@ constexpr int MAX_DENSITY_DEGRADATION = 8; constexpr uint64_t MAX_CLUSTER_SIZE = 1024 * 1024; } // end anonymous namespace -typedef std::pair<const InputSectionBase *, const InputSectionBase *> - SectionPair; +using SectionPair = + std::pair<const InputSectionBase *, const InputSectionBase *>; // Take the edge list in Config->CallGraphProfile, resolve symbol names to // Symbols, and generate a graph between InputSections with the provided |