Style fix.

llvm-svn: 202465
This commit is contained in:
Rui Ueyama 2014-02-28 05:21:26 +00:00
parent 286fb1ef32
commit 1618fe25d1
1 changed files with 2 additions and 1 deletions

View File

@ -198,7 +198,8 @@ static error_code getSectionContents(const COFFObjectFile *Obj,
ArrayRef<uint8_t> &Contents,
uint64_t &Addr) {
SymbolRef Sym;
if (error_code ec = resolveSymbol(Rels, Offset, Sym)) return ec;
if (error_code EC = resolveSymbol(Rels, Offset, Sym))
return EC;
const coff_section *Section;
if (error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr))
return EC;