mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-17 00:46:42 +00:00
ProfileData: Fix copy-paste type in RawInstrProfReader
These deleted definitions had the wrong types. Patch by Alex L! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
de04c48578
commit
8252de6ddc
@ -168,8 +168,8 @@ private:
|
|||||||
const char *NamesStart;
|
const char *NamesStart;
|
||||||
const char *ProfileEnd;
|
const char *ProfileEnd;
|
||||||
|
|
||||||
RawInstrProfReader(const TextInstrProfReader &) LLVM_DELETED_FUNCTION;
|
RawInstrProfReader(const RawInstrProfReader &) LLVM_DELETED_FUNCTION;
|
||||||
RawInstrProfReader &operator=(const TextInstrProfReader &)
|
RawInstrProfReader &operator=(const RawInstrProfReader &)
|
||||||
LLVM_DELETED_FUNCTION;
|
LLVM_DELETED_FUNCTION;
|
||||||
public:
|
public:
|
||||||
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer)
|
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer)
|
||||||
|
Loading…
Reference in New Issue
Block a user