1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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) if (!SymtabLCI)
return Error("no symbol table found in object"); return Error("no symbol table found in object");
if (!SegmentLCI) if (!SegmentLCI)
return Error("no symbol table found in object"); return Error("no segments found in object");
// Read and register the symbol table data. // Read and register the symbol table data.
InMemoryStruct<macho::SymtabLoadCommand> SymtabLC; InMemoryStruct<macho::SymtabLoadCommand> SymtabLC;