From: Chris Lattner Date: Fri, 11 Sep 2009 16:33:58 +0000 (+0000) Subject: default construct MCInst's ctor to 0, which is "PHI" which is invalid for MCInsts. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=892e44a07c2422dedff9c5f0532286e677a64842;p=oota-llvm.git 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 --- diff --git a/include/llvm/MC/MCInst.h b/include/llvm/MC/MCInst.h index b204a9b74da..10a896a6688 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; }