From: Dan Gohman Date: Fri, 30 Oct 2009 00:14:33 +0000 (+0000) Subject: Remove a redundant copy constructor. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cf3f89249deabb47c48f21abe3dcf44dbff3401f;p=oota-llvm.git Remove a redundant copy constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85547 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h index 7eab37c35b2..29b38dd15d1 100644 --- a/include/llvm/MC/MCInst.h +++ b/include/llvm/MC/MCInst.h @@ -43,7 +43,6 @@ class MCOperand { public: MCOperand() : Kind(kInvalid) {} - MCOperand(const MCOperand &RHS) { *this = RHS; } bool isValid() const { return Kind != kInvalid; } bool isReg() const { return Kind == kRegister; }