Format fix (NFC)

llvm-svn: 255313
This commit is contained in:
Xinliang David Li 2015-12-10 23:48:05 +00:00
parent f13302e63f
commit 2d4803e81b
1 changed files with 4 additions and 2 deletions

View File

@ -335,7 +335,8 @@ RawInstrProfReader<IntPtrT>::readNextRecord(InstrProfRecord &Record) {
return EC;
// Read value data and set Record.
if (std::error_code EC = readValueProfilingData(Record)) return EC;
if (std::error_code EC = readValueProfilingData(Record))
return EC;
// Iterate.
advanceData();
@ -436,7 +437,8 @@ std::error_code InstrProfReaderIndex<HashTableImpl>::getRecords(
Data = *RecordIterator;
if (Data.empty()) return instrprof_error::malformed;
if (Data.empty())
return instrprof_error::malformed;
return instrprof_error::success;
}