From: Rafael Espindola Date: Wed, 8 Oct 2014 15:12:20 +0000 (+0000) Subject: Fix indentation. X-Git-Tag: android-x86-7.1-r4~56706 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1a98f792a50640bac33dd1427af8d3fe80530e0e;p=android-x86%2Fexternal-llvm.git Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219312 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index b4f14d3dada..16208e00a5a 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -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))