From 099640405eda144320bed8acb8db97153779100a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 11 Sep 2009 16:33:58 +0000 Subject: [PATCH] default construct MCInst's ctor to 0, which is "PHI" which is invalid for MCInsts. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81525 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCInst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h index b204a9b74d..10a896a668 100644 --- a/include/llvm/MC/MCInst.h +++ b/include/llvm/MC/MCInst.h @@ -132,7 +132,7 @@ class MCInst { unsigned Opcode; SmallVector Operands; public: - MCInst() : Opcode(~0U) {} + MCInst() : Opcode(0) {} void setOpcode(unsigned Op) { Opcode = Op; } -- 2.11.4.GIT