default construct MCInst's ctor to 0, which is "PHI" which is invalid for MCInsts.
authorChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 16:33:58 +0000 (16:33 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 16:33:58 +0000 (16:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81525 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCInst.h

index b204a9b74da640469f2c8d1ad103474d3bcd6e15..10a896a668801cfcc05ccfe9f693cb98b2799f79 100644 (file)
@@ -132,7 +132,7 @@ class MCInst {
   unsigned Opcode;
   SmallVector<MCOperand, 8> Operands;
 public:
-  MCInst() : Opcode(~0U) {}
+  MCInst() : Opcode(0) {}
   
   void setOpcode(unsigned Op) { Opcode = Op; }