explain what earlyclobber actually is.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56415 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-09-21 23:30:17 +00:00
parent 743922ea75
commit 14743e83b9

View File

@ -68,9 +68,9 @@ private:
/// This is only valid on definitions of registers.
bool IsDead : 1;
/// 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.
/// IsEarlyClobber - True if this MO_Register 'def' operand is written to
/// by the MachineInstr before all input registers are read. This is used to
/// model the GCC inline asm '&' constraint modifier.
bool IsEarlyClobber : 1;
/// OverlapsEarlyClobber - True if this MO_Register operand is used as an