Fix typo in string

llvm-svn: 147654
This commit is contained in:
Eli Bendersky 2012-01-06 07:49:17 +00:00
parent 3f80f9acaa
commit eadeb0383c

View File

@ -451,7 +451,7 @@ bool RuntimeDyldMachO::loadObject(MemoryBuffer *InputBuffer) {
if (!SymtabLCI)
return Error("no symbol table found in object");
if (!SegmentLCI)
return Error("no symbol table found in object");
return Error("no segments found in object");
// Read and register the symbol table data.
InMemoryStruct<macho::SymtabLoadCommand> SymtabLC;