diff options
| author | Xinliang David Li <davidxl@google.com> | 2015-10-13 16:35:59 +0000 |
|---|---|---|
| committer | Xinliang David Li <davidxl@google.com> | 2015-10-13 16:35:59 +0000 |
| commit | c758387e9b2d3fd63ccd876ad79dd159934fddd4 (patch) | |
| tree | 4888c8c6e4477f0a44ce86831fe4b62e94375045 | |
| parent | f8432d97f30a12c6a0744d03bdd5afd916bb88ff (diff) | |
| download | bcm5719-llvm-c758387e9b2d3fd63ccd876ad79dd159934fddd4.tar.gz bcm5719-llvm-c758387e9b2d3fd63ccd876ad79dd159934fddd4.zip | |
Fix a couple of comments; NFC
llvm-svn: 250177
| -rw-r--r-- | llvm/lib/ProfileData/InstrProfReader.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/ProfileData/InstrProfReader.cpp b/llvm/lib/ProfileData/InstrProfReader.cpp index bda134fe3db..8ad50615a25 100644 --- a/llvm/lib/ProfileData/InstrProfReader.cpp +++ b/llvm/lib/ProfileData/InstrProfReader.cpp @@ -369,20 +369,20 @@ data_type InstrProfLookupTrait::ReadData(StringRef K, const unsigned char *D, using namespace support; const unsigned char *End = D + N; while (D < End) { - // Read hash + // Read hash. if (D + sizeof(uint64_t) >= End) return data_type(); uint64_t Hash = endian::readNext<uint64_t, little, unaligned>(D); - // Initialize number of counters for FormatVersion == 1 + // Initialize number of counters for FormatVersion == 1. uint64_t CountsSize = N / sizeof(uint64_t) - 1; - // If format version is different then read number of counters + // If format version is different then read the number of counters. if (FormatVersion != 1) { if (D + sizeof(uint64_t) > End) return data_type(); CountsSize = endian::readNext<uint64_t, little, unaligned>(D); } - // Read counter values + // Read counter values. if (D + CountsSize * sizeof(uint64_t) > End) return data_type(); @@ -393,7 +393,7 @@ data_type InstrProfLookupTrait::ReadData(StringRef K, const unsigned char *D, DataBuffer.push_back(InstrProfRecord(K, Hash, std::move(CounterBuffer))); - // Read value profiling data + // Read value profiling data. if (FormatVersion > 2 && !ReadValueProfilingData(D, End)) { DataBuffer.clear(); return data_type(); @@ -408,7 +408,7 @@ bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { using namespace support; uint64_t Magic = endian::read<uint64_t, little, aligned>(DataBuffer.getBufferStart()); - // verify that it's magical + // Verify that it's magical. return Magic == IndexedInstrProf::Magic; } |

