From cf3f89249deabb47c48f21abe3dcf44dbff3401f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 30 Oct 2009 00:14:33 +0000 Subject: [PATCH] Remove a redundant copy constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85547 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCInst.h | 1 - 1 file changed, 1 deletion(-) 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; } -- 2.34.1