diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-02-20 18:24:34 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-02-20 18:24:34 +0000 |
commit | fca968e13d4328b4e9ab296d99a95de62c2dd75d (patch) | |
tree | 2723626720a30491eded5ad225834f3eb182c9d9 /llvm/lib/ExecutionEngine | |
parent | 798679e140dffa5db4ee06ca7cb5777731988255 (diff) | |
download | bcm5719-llvm-fca968e13d4328b4e9ab296d99a95de62c2dd75d.tar.gz bcm5719-llvm-fca968e13d4328b4e9ab296d99a95de62c2dd75d.zip |
Formatting, grammar
llvm-svn: 175647
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index 64c979215f3..409b25fef3a 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -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); |