Fix field initialization order problem
authorChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 18:49:54 +0000 (18:49 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 26 Nov 2001 18:49:54 +0000 (18:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1366 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineInstr.h

index 7444aa4b845fbc43b5842ad12068659f44494cca..32e9462cbee5d1bd975a8b515aa386b10b5e476d 100644 (file)
@@ -186,7 +186,6 @@ MachineOperand::MachineOperand(MachineOperandType operandType,
   : opType(operandType),
     immedVal(0),
     regNum(-1),
-    value(_val),
     isDef(false)
 {}