h8300.c (h8300_eightbit_constant_address_p): Fix a comment typo.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 29 Nov 2002 02:15:52 +0000 (02:15 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 29 Nov 2002 02:15:52 +0000 (02:15 +0000)
* config/h8300/h8300.c (h8300_eightbit_constant_address_p):
Fix a comment typo.
(h8300_tiny_constant_address_p): Likewise.

From-SVN: r59623

gcc/ChangeLog
gcc/config/h8300/h8300.c

index fd1fe2f26c35ab19073044e1620f11598ce1107a..935e4b3429f35f07553c9f185dabd6a404b8cdd0 100644 (file)
@@ -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.
index 66ee6fa475941c418abbe1e698fe63fc745b8fd7..d94904ec38c2512d7bf1311986e59d709c984c96 100644 (file)
@@ -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);