From 17ec8a8dd06d1a0d68b416352e7159f005da78dd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Nov 2002 22:14:08 +0000 Subject: Remove only uses of markDef/markDefAndUse methods llvm-svn: 4719 --- llvm/lib/CodeGen/MachineInstr.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 28fbd2d0048..91ee5123e19 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -98,12 +98,13 @@ MachineInstr::SetMachineOperandVal(unsigned i, operands[i].opType = opType; operands[i].value = V; operands[i].regNum = -1; - operands[i].flags = 0; - if (isdef || TargetInstrDescriptors[opCode].resultPos == (int) i) - operands[i].markDef(); if (isDefAndUse) - operands[i].markDefAndUse(); + operands[i].flags = MachineOperand::DEFUSEFLAG; + else if (isdef || TargetInstrDescriptors[opCode].resultPos == (int) i) + operands[i].flags = MachineOperand::DEFFLAG; + else + operands[i].flags = 0; } void @@ -131,10 +132,12 @@ MachineInstr::SetMachineOperandReg(unsigned i, operands[i].opType = MachineOperand::MO_MachineRegister; operands[i].value = NULL; operands[i].regNum = regNum; - operands[i].flags = 0; if (isdef || TargetInstrDescriptors[opCode].resultPos == (int) i) - operands[i].markDef(); + operands[i].flags = MachineOperand::DEFFLAG; + else + operands[i].flags = 0; + insertUsedReg(regNum); } -- cgit v1.2.3