diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:14 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:14 +0000 |
commit | af16cda10d4286d1bed8aacd559211d7ee0af4c2 (patch) | |
tree | b20a1b89afe9458f2c3d4f69bc6d70164890a563 | |
parent | 3bf8b304fc48e8563d934e116d302e74874a63b6 (diff) | |
download | bcm5719-llvm-af16cda10d4286d1bed8aacd559211d7ee0af4c2.tar.gz bcm5719-llvm-af16cda10d4286d1bed8aacd559211d7ee0af4c2.zip |
Remove explicit copy ctor in favor of the implicit one so that the use of the copy assignment operator is not deprecated.
llvm-svn: 231110
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineRegisterInfo.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineRegisterInfo.h b/llvm/include/llvm/CodeGen/MachineRegisterInfo.h index abb04deb35e..855b255a5ec 100644 --- a/llvm/include/llvm/CodeGen/MachineRegisterInfo.h +++ b/llvm/include/llvm/CodeGen/MachineRegisterInfo.h @@ -829,7 +829,6 @@ public: typedef std::iterator<std::forward_iterator_tag, MachineInstr, ptrdiff_t>::pointer pointer; - defusechain_iterator(const defusechain_iterator &I) : Op(I.Op) {} defusechain_iterator() : Op(nullptr) {} bool operator==(const defusechain_iterator &x) const { @@ -932,7 +931,6 @@ public: typedef std::iterator<std::forward_iterator_tag, MachineInstr, ptrdiff_t>::pointer pointer; - defusechain_instr_iterator(const defusechain_instr_iterator &I) : Op(I.Op){} defusechain_instr_iterator() : Op(nullptr) {} bool operator==(const defusechain_instr_iterator &x) const { |