diff options
Diffstat (limited to 'llvm/lib/ProfileData/InstrProfWriter.cpp')
-rw-r--r-- | llvm/lib/ProfileData/InstrProfWriter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ProfileData/InstrProfWriter.cpp b/llvm/lib/ProfileData/InstrProfWriter.cpp index b6725df5278..cb123e29982 100644 --- a/llvm/lib/ProfileData/InstrProfWriter.cpp +++ b/llvm/lib/ProfileData/InstrProfWriter.cpp @@ -53,7 +53,7 @@ public: M += ProfRecord.Counts.size() * sizeof(uint64_t); // Value data - M += IndexedInstrProf::ValueProfData::getSize(ProfileData.second); + M += ValueProfData::getSize(ProfileData.second); } LE.write<offset_type>(M); @@ -77,8 +77,8 @@ public: LE.write<uint64_t>(I); // Write value data - std::unique_ptr<IndexedInstrProf::ValueProfData> VDataPtr = - IndexedInstrProf::ValueProfData::serializeFrom(ProfileData.second); + std::unique_ptr<ValueProfData> VDataPtr = + ValueProfData::serializeFrom(ProfileData.second); uint32_t S = VDataPtr->getSize(); VDataPtr->swapBytesFromHost(ValueProfDataEndianness); Out.write((const char *)VDataPtr.get(), S); |