diff options
Diffstat (limited to 'llvm/lib/Object')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 5db2642..e09dc94 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -3115,7 +3115,7 @@ void ExportEntry::pushNode(uint64_t offset) { } State.ChildCount = *Children; if (State.ChildCount != 0 && Children + 1 >= Trie.end()) { - *E = malformedError("byte for count of childern in export trie data at " + *E = malformedError("byte for count of children in export trie data at " "node: 0x" + Twine::utohexstr(offset) + " extends past end of trie data"); @@ -3157,7 +3157,7 @@ void ExportEntry::pushDownUntilBottom() { } for (const NodeState &node : nodes()) { if (node.Start == Trie.begin() + childNodeIndex){ - *E = malformedError("loop in childern in export trie data at node: 0x" + + *E = malformedError("loop in children in export trie data at node: 0x" + Twine::utohexstr(Top.Start - Trie.begin()) + " back to node: 0x" + Twine::utohexstr(childNodeIndex)); |