1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-16 14:31:16 +00:00

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

@ -68,9 +68,9 @@ private:
/// This is only valid on definitions of registers. /// This is only valid on definitions of registers.
bool IsDead : 1; bool IsDead : 1;
/// IsEarlyClobber - True if this MO_Register operand is marked earlyclobber /// IsEarlyClobber - True if this MO_Register 'def' operand is written to
/// in an inline asm. Flag is not valid for any other case. See gcc doc /// by the MachineInstr before all input registers are read. This is used to
/// for description of earlyclobber. /// model the GCC inline asm '&' constraint modifier.
bool IsEarlyClobber : 1; bool IsEarlyClobber : 1;
/// OverlapsEarlyClobber - True if this MO_Register operand is used as an /// OverlapsEarlyClobber - True if this MO_Register operand is used as an