1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

ProfileData: Fix copy-paste type in RawInstrProfReader

These deleted definitions had the wrong types.

Patch by Alex L!

llvm-svn: 211199
This commit is contained in:
Justin Bogner 2014-06-18 18:20:44 +00:00
parent d9cb22f267
commit 8f4d6f2007

View File

@ -168,8 +168,8 @@ private:
const char *NamesStart;
const char *ProfileEnd;
RawInstrProfReader(const TextInstrProfReader &) LLVM_DELETED_FUNCTION;
RawInstrProfReader &operator=(const TextInstrProfReader &)
RawInstrProfReader(const RawInstrProfReader &) LLVM_DELETED_FUNCTION;
RawInstrProfReader &operator=(const RawInstrProfReader &)
LLVM_DELETED_FUNCTION;
public:
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer)