diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-06-18 18:20:44 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-06-18 18:20:44 +0000 |
commit | 989574ca992b8e0c36e0c60e5644e7abfc1b7005 (patch) | |
tree | da5225d3a5f6fe5a0030649529de4807a7a4b2d6 | |
parent | 8c89973462407b8b458174e1e6beb853575d3cf6 (diff) | |
download | bcm5719-llvm-989574ca992b8e0c36e0c60e5644e7abfc1b7005.tar.gz bcm5719-llvm-989574ca992b8e0c36e0c60e5644e7abfc1b7005.zip |
ProfileData: Fix copy-paste type in RawInstrProfReader
These deleted definitions had the wrong types.
Patch by Alex L!
llvm-svn: 211199
-rw-r--r-- | llvm/include/llvm/ProfileData/InstrProfReader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProfReader.h b/llvm/include/llvm/ProfileData/InstrProfReader.h index c5005a1d11e..7a5a71dc6a3 100644 --- a/llvm/include/llvm/ProfileData/InstrProfReader.h +++ b/llvm/include/llvm/ProfileData/InstrProfReader.h @@ -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) |