From 32207fac808af8f395826b391ce4a56520027a63 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Thu, 1 May 2014 17:16:24 +0000 Subject: Fixing a cast-qual warning. getBufferStart() and getBufferEnd() both return a const char *, so casting to non-const was triggering a warning (even though the assignment and usage was always const anyway). No functional changes intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207774 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ProfileData/InstrProfReader.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/ProfileData') diff --git a/lib/ProfileData/InstrProfReader.cpp b/lib/ProfileData/InstrProfReader.cpp index 12c3c8256b..2ab0eb9449 100644 --- a/lib/ProfileData/InstrProfReader.cpp +++ b/lib/ProfileData/InstrProfReader.cpp @@ -262,9 +262,10 @@ bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { } error_code IndexedInstrProfReader::readHeader() { - const unsigned char *Start = (unsigned char *)DataBuffer->getBufferStart(); + const unsigned char *Start = + (const unsigned char *)DataBuffer->getBufferStart(); const unsigned char *Cur = Start; - if ((unsigned char *)DataBuffer->getBufferEnd() - Cur < 24) + if ((const unsigned char *)DataBuffer->getBufferEnd() - Cur < 24) return error(instrprof_error::truncated); using namespace support; -- cgit v1.2.3