From 3ee997ba4243efabe6a810aa4a02e2755256725d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Nov 2001 18:49:54 +0000 Subject: [PATCH] Fix field initialization order problem git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1366 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineInstr.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 7444aa4b845..32e9462cbee 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -186,7 +186,6 @@ MachineOperand::MachineOperand(MachineOperandType operandType, : opType(operandType), immedVal(0), regNum(-1), - value(_val), isDef(false) {} -- 2.34.1