diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-11-29 02:15:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-11-29 02:15:52 +0000 |
commit | 3f7211f19e48def37bb62c8195499d62da22e46c (patch) | |
tree | 473782875dce64053f0dc4e06e2532a7217ca4fc | |
parent | ccb128db7a4b3422577d6311a3baa63c4acbfc04 (diff) | |
download | gcc-3f7211f19e48def37bb62c8195499d62da22e46c.zip gcc-3f7211f19e48def37bb62c8195499d62da22e46c.tar.gz gcc-3f7211f19e48def37bb62c8195499d62da22e46c.tar.bz2 |
h8300.c (h8300_eightbit_constant_address_p): Fix a comment typo.
* config/h8300/h8300.c (h8300_eightbit_constant_address_p):
Fix a comment typo.
(h8300_tiny_constant_address_p): Likewise.
From-SVN: r59623
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd1fe2f..935e4b3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-11-28 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.c (h8300_eightbit_constant_address_p): + Fix a comment typo. + (h8300_tiny_constant_address_p): Likewise. + 2002-11-28 Michael Matz <matz@suse.de> * doc/passes.texi: Mention the other register allocator. diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 66ee6fa..d94904e 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -3914,7 +3914,7 @@ int h8300_eightbit_constant_address_p (x) rtx x; { - /* The ranges the 8-bit area. */ + /* The ranges of the 8-bit area. */ const unsigned HOST_WIDE_INT n1 = trunc_int_for_mode (0xff00, HImode); const unsigned HOST_WIDE_INT n2 = trunc_int_for_mode (0xffff, HImode); const unsigned HOST_WIDE_INT h1 = trunc_int_for_mode (0x00ffff00, SImode); @@ -3946,7 +3946,7 @@ int h8300_tiny_constant_address_p (x) rtx x; { - /* The ranges for the 16-bit area. */ + /* The ranges of the 16-bit area. */ const unsigned HOST_WIDE_INT h1 = trunc_int_for_mode (0x00000000, SImode); const unsigned HOST_WIDE_INT h2 = trunc_int_for_mode (0x00007fff, SImode); const unsigned HOST_WIDE_INT h3 = trunc_int_for_mode (0x00ff8000, SImode); |