Fix indentation.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 8 Oct 2014 15:12:20 +0000 (15:12 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 8 Oct 2014 15:12:20 +0000 (15:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219312 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp

index b4f14d3dada53becf320b56b8bbe3cf57972f60b..16208e00a5af11d89440a7e17ff9539a17e7d44f 100644 (file)
@@ -129,10 +129,10 @@ static std::error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
   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))