summaryrefslogtreecommitdiff
path: root/tools/llvm-objdump/MachODump.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-12-13 06:36:18 +0000
committerEric Christopher <echristo@gmail.com>2012-12-13 06:36:18 +0000
commitef8581479e58fe092178a9727f373a61b690a8df (patch)
treed9614f1df4823723f601117bc7f569063fe93833 /tools/llvm-objdump/MachODump.cpp
parenta61b17c18a67f1b3faef2f2108379c4337ce9bb7 (diff)
downloadllvm-ef8581479e58fe092178a9727f373a61b690a8df.tar.gz
llvm-ef8581479e58fe092178a9727f373a61b690a8df.tar.bz2
llvm-ef8581479e58fe092178a9727f373a61b690a8df.tar.xz
Revert "Add a funciton to get the segment name of a section."
This reverts commit r170095 since it appears to be breaking the bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-objdump/MachODump.cpp')
-rw-r--r--tools/llvm-objdump/MachODump.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/llvm-objdump/MachODump.cpp b/tools/llvm-objdump/MachODump.cpp
index c324ff13a6..3a350382ae 100644
--- a/tools/llvm-objdump/MachODump.cpp
+++ b/tools/llvm-objdump/MachODump.cpp
@@ -334,15 +334,9 @@ void llvm::DisassembleInputMachO(StringRef Filename) {
for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
StringRef SectName;
if (Sections[SectIdx].getName(SectName) ||
- SectName != "__text")
+ SectName.compare("__TEXT,__text"))
continue; // Skip non-text sections
- StringRef SegmentName;
- DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
- if (MachOOF->getSectionFinalSegmentName(DR, SegmentName) ||
- SegmentName != "__TEXT")
- continue;
-
// Insert the functions from the function starts segment into our map.
uint64_t VMAddr;
Sections[SectIdx].getAddress(VMAddr);