aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/MachOObjectFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r--llvm/lib/Object/MachOObjectFile.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp
index 812b2c0..ff55a84 100644
--- a/llvm/lib/Object/MachOObjectFile.cpp
+++ b/llvm/lib/Object/MachOObjectFile.cpp
@@ -5195,11 +5195,6 @@ MachOObjectFile::getDyldChainedFixupTargets() const {
if (ImportsEnd > Symbols)
return malformedError("bad chained fixups: imports end " +
- Twine(ImportsEndOffset) + " extends past end " +
- Twine(DyldChainedFixups.datasize));
-
- if (ImportsEnd > Symbols)
- return malformedError("bad chained fixups: imports end " +
Twine(ImportsEndOffset) + " overlaps with symbols");
// We use bit manipulation to extract data from the bitfields. This is correct