Format fix (NFC)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255313 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Xinliang David Li 2015-12-10 23:48:05 +00:00
parent 337570a52e
commit 849df7927e

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;
}