summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-12-02 07:37:46 +0000
committerBill Wendling <isanbard@gmail.com>2013-12-02 07:37:46 +0000
commit3d238de4d54eb0b16afd96a57f49f92b2f7748e0 (patch)
tree29049b101a4428f4df0ae7f91765ae56f2339069 /include
parentdddd7705b0d526c64d143c7cb83f21c7686796af (diff)
downloadllvm-3d238de4d54eb0b16afd96a57f49f92b2f7748e0.tar.gz
llvm-3d238de4d54eb0b16afd96a57f49f92b2f7748e0.tar.bz2
llvm-3d238de4d54eb0b16afd96a57f49f92b2f7748e0.tar.xz
Merging r195401:
------------------------------------------------------------------------ r195401 | lhames | 2013-11-21 16:46:32 -0800 (Thu, 21 Nov 2013) | 8 lines 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>. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@196073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineOperand.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h
index 57b28fecf8..40f3580bfd 100644
--- a/include/llvm/CodeGen/MachineOperand.h
+++ b/include/llvm/CodeGen/MachineOperand.h
@@ -564,6 +564,8 @@ public:
unsigned SubReg = 0,
bool isDebug = false,
bool isInternalRead = false) {
+ assert(!(isDead && !isDef) && "Dead flag on non-def");
+ assert(!(isKill && isDef) && "Kill flag on def");
MachineOperand Op(MachineOperand::MO_Register);
Op.IsDef = isDef;
Op.IsImp = isImp;