diff options
author | Lang Hames <lhames@gmail.com> | 2013-11-22 00:46:32 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2013-11-22 00:46:32 +0000 |
commit | 1ca1123598b0c073cf75e4d89d6eb174722cdf2d (patch) | |
tree | 2901ece60c3605d527b403d429c5f32f9b070996 /llvm/lib/Target | |
parent | b3e721995ff0712d0cecfc1bbce1a0cfc591bccf (diff) | |
download | bcm5719-llvm-1ca1123598b0c073cf75e4d89d6eb174722cdf2d.tar.gz bcm5719-llvm-1ca1123598b0c073cf75e4d89d6eb174722cdf2d.zip |
Fix a typo where we were creating <def,kill> operands instead of
<def,dead> ones.
Add an assertion to make sure we catch this in the future.
Fixes <rdar://problem/15464559>.
llvm-svn: 195401
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp index b2dd9d85e52..67534c4a445 100644 --- a/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp +++ b/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp @@ -1934,7 +1934,8 @@ bool llvm::tryFoldSPUpdateIntoPushPop(MachineFunction &MF, return false; // Mark the unimportant registers as <def,dead> in the POP. - RegList.push_back(MachineOperand::CreateReg(CurReg, true, false, true)); + RegList.push_back(MachineOperand::CreateReg(CurReg, true, false, false, + true)); } if (RegsNeeded > 0) |