summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2013-02-20 18:24:34 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2013-02-20 18:24:34 +0000
commit29fe150bff0f167e85e1b44efe344bf28cb7fe0f (patch)
tree0c9cec742711cc183f6896eb9fc4a42ecd582c02 /lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
parent0464565baee4b9a1b660aafb70778db571730edc (diff)
downloadllvm-29fe150bff0f167e85e1b44efe344bf28cb7fe0f.tar.gz
llvm-29fe150bff0f167e85e1b44efe344bf28cb7fe0f.tar.bz2
llvm-29fe150bff0f167e85e1b44efe344bf28cb7fe0f.tar.xz
Formatting, grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp')
-rw-r--r--lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
index 64c979215f..409b25fef3 100644
--- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
+++ b/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);