From: Jakob Stoklund Olesen Date: Thu, 6 Sep 2012 19:51:21 +0000 (+0000) Subject: TiedTo is an integer, not a bool. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c8ecb401caefc5fb97b20041544d8da5d8e2f830;p=oota-llvm.git TiedTo is an integer, not a bool. Thanks, Andy. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163343 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 139122d47b1..4e1533a8e7e 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -968,8 +968,8 @@ private: void untieRegOperand(unsigned OpIdx) { MachineOperand &MO = getOperand(OpIdx); if (MO.isReg() && MO.isTied()) { - getOperand(findTiedOperandIdx(OpIdx)).TiedTo = false; - MO.TiedTo = false; + getOperand(findTiedOperandIdx(OpIdx)).TiedTo = 0; + MO.TiedTo = 0; } }