Formatting, grammar

llvm-svn: 175647
This commit is contained in:
Andrew Kaylor 2013-02-20 18:24:34 +00:00
parent 798679e140
commit fca968e13d
1 changed files with 2 additions and 3 deletions

View File

@ -436,9 +436,8 @@ void RuntimeDyldImpl::resolveExternalSymbols() {
// This is an absolute symbol, use an address of zero.
DEBUG(dbgs() << "Resolving absolute relocations." << "\n");
resolveRelocationList(Relocs, 0);
}
else {
// This is an external symbol, try to get it address from
} else {
// This is an external symbol, try to get its address from
// MemoryManager.
uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
true);