diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-03 18:43:29 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-03 18:43:29 +0000 |
commit | c0cb30e088ea7957249ade4c4ac70e2cb6e86a09 (patch) | |
tree | a3ffaf890f912375bea2da96d18943f1c4d0821d | |
parent | 3677652ffa3f980052d2d7bae28bf170d198fae8 (diff) | |
download | gcc-c0cb30e088ea7957249ade4c4ac70e2cb6e86a09.tar.gz |
gcc/
* doc/rtl.texi (RTX_AUTOINC): Document that the first operand is
the automodified register.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214890 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/rtl.texi | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d248a107b6f..ce38dbac628 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2014-09-03 Richard Sandiford <rdsandiford@googlemail.com> + * doc/rtl.texi (RTX_AUTOINC): Document that the first operand is + the automodified register. + +2014-09-03 Richard Sandiford <rdsandiford@googlemail.com> + * output.h (get_some_local_dynamic_name): Declare. * final.c (some_local_dynamic_name): New variable. (get_some_local_dynamic_name): New function. diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index 605a5a18734..44170d2570d 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -193,7 +193,8 @@ An RTX code for something that matches in insns, such as @item RTX_AUTOINC An RTX code for an auto-increment addressing mode, such as -@code{POST_INC}. +@code{POST_INC}. @samp{XEXP (@var{x}, 0)} gives the auto-modified +register. @item RTX_EXTRA All other RTX codes. This category includes the remaining codes used |