mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80176 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6047515446
commit
16df208d4e
@ -655,12 +655,12 @@ getMachOSection(const StringRef &Segment, const StringRef &Section,
|
||||
|
||||
// Form the name to look up.
|
||||
SmallString<64> Name;
|
||||
Name.append(Segment.begin(), Segment.end());
|
||||
Name += Segment;
|
||||
Name.push_back(',');
|
||||
Name.append(Section.begin(), Section.end());
|
||||
Name += Section;
|
||||
|
||||
// Do the lookup, if we have a hit, return it.
|
||||
const MCSectionMachO *&Entry = Map[StringRef(Name.data(), Name.size())];
|
||||
const MCSectionMachO *&Entry = Map[Name.str()];
|
||||
if (Entry) return Entry;
|
||||
|
||||
// Otherwise, return a new section.
|
||||
|
Loading…
x
Reference in New Issue
Block a user