h8300.c (get_shift_alg): Update comments.
authorKazu Hirata <kazu@hxi.com>
Sun, 14 Jan 2001 15:36:42 +0000 (15:36 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 14 Jan 2001 15:36:42 +0000 (15:36 +0000)
2001-01-14  Kazu Hirata  <kazu@hxi.com>

* config/h8300/h8300.c (get_shift_alg): Update comments.

From-SVN: r39010

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

index b1091ce0441b56009059fce399e9939b186f2c85..2dcb26bfb5862eb1e030bca58d03456c4865b10a 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-14  Kazu Hirata  <kazu@hxi.com>
+
+       * config/h8300/h8300.c (get_shift_alg): Update comments.
+
 Sun Jan 14 06:20:49 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * ggc-page.c (alloc_annon): Call perror and correctly call exit.
index 2aeb478d4950992bab669af67d9930aaf833e392..c2ebcf61bcb92eb47921e6a47de8a581beb728e3 100644 (file)
@@ -1996,10 +1996,10 @@ static enum shift_alg get_shift_alg PARAMS ((enum shift_type,
                                             enum shift_mode, int,
                                             struct shift_info *));
 
-/* Given CPU, MODE, SHIFT_TYPE, and shift count COUNT, determine the best
-   algorithm for doing the shift.  The assembler code is stored in ASSEMBLER.
-   We don't achieve maximum efficiency in all cases, but the hooks are here
-   to do so.
+/* Given SHIFT_TYPE, SHIFT_MODE, and shift count COUNT, determine the
+   best algorithm for doing the shift.  The assembler code is stored
+   in the pointers in INFO.  We don't achieve maximum efficiency in
+   all cases, but the hooks are here to do so.
 
    For now we just use lots of switch statements.  Since we don't even come
    close to supporting all the cases, this is simplest.  If this function ever