summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCInst.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-30 00:14:33 +0000
committerDan Gohman <gohman@apple.com>2009-10-30 00:14:33 +0000
commitcf3f89249deabb47c48f21abe3dcf44dbff3401f (patch)
tree1aa4a1237605f93b481c4ffb91708c862b94d330 /include/llvm/MC/MCInst.h
parent95d9504d46a18d65facca9a86cd53fa03cba1eca (diff)
downloadllvm-cf3f89249deabb47c48f21abe3dcf44dbff3401f.tar.gz
llvm-cf3f89249deabb47c48f21abe3dcf44dbff3401f.tar.bz2
llvm-cf3f89249deabb47c48f21abe3dcf44dbff3401f.tar.xz
Remove a redundant copy constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85547 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCInst.h')
-rw-r--r--include/llvm/MC/MCInst.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h
index 7eab37c35b..29b38dd15d 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; }