Formatting, grammar
authorAndrew Kaylor <andrew.kaylor@intel.com>
Wed, 20 Feb 2013 18:24:34 +0000 (18:24 +0000)
committerAndrew Kaylor <andrew.kaylor@intel.com>
Wed, 20 Feb 2013 18:24:34 +0000 (18:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175647 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp

index 64c979215f3835676ef1f5f3786d5368f56cfde3..409b25fef3af235d3edfb33cfc6e7052bdddea06 100644 (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);