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 | 27a625a74b75d81f1ef45cae608de5c74e89737c (patch) | |
tree | c1adc5f422efea146e944f9cff16abd20eaecbb1 /llvm/lib/CodeGen | |
parent | 85b7b40621d58f689e2b5515fbbbc8c744207ee0 (diff) | |
download | bcm5719-llvm-27a625a74b75d81f1ef45cae608de5c74e89737c.tar.gz bcm5719-llvm-27a625a74b75d81f1ef45cae608de5c74e89737c.zip |
llvm bug #1350, parts 1, 2, and 3.
llvm-svn: 36618
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 1c0d9cc4eb1..9d09a9f95e5 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/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); } } |