[llvm] r219312 - Fix indentation.

Rafael Espindola rafael.espindola at gmail.com
Wed Oct 8 08:12:21 PDT 2014


Author: rafael
Date: Wed Oct  8 10:12:20 2014
New Revision: 219312

URL: http://llvm.org/viewvc/llvm-project?rev=219312&view=rev
Log:
Fix indentation.

Modified:
    llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp

Modified: llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp?rev=219312&r1=219311&r2=219312&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp Wed Oct  8 10:12:20 2014
@@ -129,10 +129,10 @@ static std::error_code getOffset(const S
   if (std::error_code EC = Sym.getSection(SecI))
     return EC;
 
- if (SecI == Obj->section_end()) {
-   Result = UnknownAddressOrSize;
-   return object_error::success;
- }
+  if (SecI == Obj->section_end()) {
+    Result = UnknownAddressOrSize;
+    return object_error::success;
+  }
 
   uint64_t SectionAddress;
   if (std::error_code EC = SecI->getAddress(SectionAddress))





More information about the llvm-commits mailing list