diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-02 05:12:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-02 05:12:53 +0000 |
commit | 28432d9f649c627be9ef43142ec36078e359b3b2 (patch) | |
tree | 240206849333088029ca81a16abc0cbb5c5e961b | |
parent | e651d484e1e55fe4ac55279641e149c1efe12d0c (diff) | |
download | gcc-28432d9f649c627be9ef43142ec36078e359b3b2.zip gcc-28432d9f649c627be9ef43142ec36078e359b3b2.tar.gz gcc-28432d9f649c627be9ef43142ec36078e359b3b2.tar.bz2 |
* ra-build.c: Fix a comment typo.
From-SVN: r59705
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ra-build.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4a7d372..df0aa95 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-12-02 Kazu Hirata <kazu@cs.umass.edu> + + * ra-build.c: Fix a comment typo. + 2002-12-01 Kazu Hirata <kazu@cs.umass.edu> * config/h8300/h8300.c (h8300_output_function_prologue): diff --git a/gcc/ra-build.c b/gcc/ra-build.c index e320e51..db2979a 100644 --- a/gcc/ra-build.c +++ b/gcc/ra-build.c @@ -612,7 +612,7 @@ struct curr_use { It is only called with DEF and USE being (reg:M a) or (subreg:M1 (reg:M2 a) x) rtx's. Furthermore if it's a subreg rtx M1 is at least one word wide, and a is a multi-word pseudo. If DEF or USE are hardregs, they are in - wordmode, so we don't need to check for further hardregs which would result + word_mode, so we don't need to check for further hardregs which would result from wider references. We are never called with paradoxical subregs. This returns: |