diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-08 15:12:20 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-08 15:12:20 +0000 |
commit | fdf5f7a9dd49464564dc2782d624eab94580b446 (patch) | |
tree | 90f490a97bf8a73d120a1de889cd474e01ccb96b /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | |
parent | eea4f88575b482bb68fc712284812d774984e517 (diff) | |
download | bcm5719-llvm-fdf5f7a9dd49464564dc2782d624eab94580b446.tar.gz bcm5719-llvm-fdf5f7a9dd49464564dc2782d624eab94580b446.zip |
Fix indentation.
llvm-svn: 219312
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index b4f14d3dada..16208e00a5a 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/llvm/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)) |