diff options
Diffstat (limited to 'include/llvm/MC/MCInst.h')
-rw-r--r-- | include/llvm/MC/MCInst.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h index 0fc4d18..29b38dd 100644 --- a/include/llvm/MC/MCInst.h +++ b/include/llvm/MC/MCInst.h @@ -17,7 +17,7 @@ #define LLVM_MC_MCINST_H #include "llvm/ADT/SmallVector.h" -#include "llvm/Support/DataTypes.h" +#include "llvm/System/DataTypes.h" namespace llvm { class raw_ostream; @@ -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; } |