diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-09-21 23:30:17 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-09-21 23:30:17 +0000 |
| commit | f9e5357cf9eb936e63a1483ca909b688875b3156 (patch) | |
| tree | 96626bff0c2254baac52c97e74598b91db636f49 | |
| parent | 16cfae17df0fd8e85e7298fac68384d48eb38417 (diff) | |
| download | external_llvm-f9e5357cf9eb936e63a1483ca909b688875b3156.zip external_llvm-f9e5357cf9eb936e63a1483ca909b688875b3156.tar.gz external_llvm-f9e5357cf9eb936e63a1483ca909b688875b3156.tar.bz2 | |
explain what earlyclobber actually is.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56415 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | include/llvm/CodeGen/MachineOperand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h index 555f320..c2399be 100644 --- a/include/llvm/CodeGen/MachineOperand.h +++ b/include/llvm/CodeGen/MachineOperand.h @@ -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 |
