diff options
author | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-09-10 18:52:41 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-09-10 18:52:41 +0000 |
commit | 18b3a02a1c6aa1d0b11547650b267d91813b6f5c (patch) | |
tree | fef5c283b613b5e20aa87832379f06b4b37788ac /gcc/rtl.def | |
parent | 5b14d144b860973937a4aac4086cea32837b1752 (diff) | |
download | gcc-18b3a02a1c6aa1d0b11547650b267d91813b6f5c.zip gcc-18b3a02a1c6aa1d0b11547650b267d91813b6f5c.tar.gz gcc-18b3a02a1c6aa1d0b11547650b267d91813b6f5c.tar.bz2 |
* rtl.def (REG): Add comment to describe third field.
From-SVN: r87312
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 4c678db..61cb811 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -338,7 +338,8 @@ DEF_RTL_EXPR(VALUE, "value", "0", RTX_OBJ) the REGNO macro. If this number is less than FIRST_PSEUDO_REGISTER than a hardware register is being referred to. The second operand holds the original register number - this will be different for a - pseudo register that got turned into a hard register. + pseudo register that got turned into a hard register. The third + operand points to a reg_attrs structure. This rtx needs to have as many (or more) fields as a MEM, since we can change REG rtx's into MEMs during reload. */ DEF_RTL_EXPR(REG, "reg", "i00", RTX_OBJ) |