diff options
author | Dale Johannesen <dalej@apple.com> | 2008-09-14 01:44:36 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-09-14 01:44:36 +0000 |
commit | e009180f2bbcf5edbe3b583936c37c4b3be2d082 (patch) | |
tree | a22afe692e10177ca491fd788cf5255dca60fc05 /include/llvm/CodeGen/MachineOperand.h | |
parent | bfe2f407db4cfb27f7e0cebbffcd3db8d53f864c (diff) |
adjust last patch per review feedback
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineOperand.h')
-rw-r--r-- | include/llvm/CodeGen/MachineOperand.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h index 6d4c98919a..b0f7cc69f9 100644 --- a/include/llvm/CodeGen/MachineOperand.h +++ b/include/llvm/CodeGen/MachineOperand.h @@ -68,11 +68,9 @@ private: /// This is only valid on definitions of registers. bool IsDead : 1; - /// IsEarlyClobber flag - this is only valid for MO_Register operands in - /// an inline asm. - - /// IsEarlyClobber - True if this operand is marked earlyclobber in an - /// inline asm. See gcc doc for description of earlyclobber. + /// IsEarlyClobber - True if this MO_Register operand is marked earlyclobber + /// in an inline asm. Flag is not valid for any other case. See gcc doc + /// for description of earlyclobber. bool IsEarlyClobber : 1; /// SubReg - Subregister number, only valid for MO_Register. A value of 0 @@ -318,8 +316,7 @@ public: /// the specified value. If an operand is known to be an register already, /// the setReg method should be used. void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false, - bool isKill = false, bool isDead = false, - bool isEarlyClobber = false); + bool isKill = false, bool isDead = false); //===--------------------------------------------------------------------===// // Construction methods. |