llvm bug #1350, parts 1, 2, and 3.

llvm-svn: 36618
This commit is contained in:
Nate Begeman
2007-05-01 05:57:02 +00:00
parent 85b7b40621
commit 27a625a74b
6 changed files with 132 additions and 26 deletions

View File

@@ -39,7 +39,7 @@ void MachineInstr::addImplicitDefUseOperands() {
Op.IsKill = false;
Op.IsDead = false;
Op.contents.RegNo = *ImpDefs;
Op.offset = 0;
Op.auxInfo.subReg = 0;
Operands.push_back(Op);
}
if (TID->ImplicitUses)
@@ -51,7 +51,7 @@ void MachineInstr::addImplicitDefUseOperands() {
Op.IsKill = false;
Op.IsDead = false;
Op.contents.RegNo = *ImpUses;
Op.offset = 0;
Op.auxInfo.subReg = 0;
Operands.push_back(Op);
}
}