git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307528
91177308-0d34-0410-b5e6-
96231b3b80d8
StringRef Name;
Section.getName(Name);
// Skip BSS and Virtual sections, they aren't interesting.
- bool IsBSS = Section.isBSS();
- if (IsBSS)
+ if (Section.isBSS() || Section.isVirtual())
continue;
- bool IsVirtual = Section.isVirtual();
- if (IsVirtual)
- continue;
- StringRef Data;
+ StringRef Data;
section_iterator RelocatedSection = Section.getRelocatedSection();
// Try to obtain an already relocated version of this section.
// Else use the unrelocated section from the object file. We'll have to