diff options
author | Nate Begeman <natebegeman@mac.com> | 2007-05-01 05:57:02 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2007-05-01 05:57:02 +0000 |
commit | 7bf1c272ab27297a7bbab329de3f17ddb26e02a3 (patch) | |
tree | 6fc181f3207ebd7bc26e82219f7f61d2d56f77ac /lib/CodeGen/MachineInstr.cpp | |
parent | 980e5aad4cfaa32e13b297f4201eb1088ca96cc4 (diff) |
llvm bug #1350, parts 1, 2, and 3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 1c0d9cc4eb..9d09a9f95e 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -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); } } |