This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[committed patch] h8300.c (get_shift_alg): Update comments.
- To: gcc-patches at gcc dot gnu dot org
- Subject: [committed patch] h8300.c (get_shift_alg): Update comments.
- From: Kazu Hirata <kazu at hxi dot com>
Hi,
When I committed a patch to modify the prototype of get_shift_alg() in
h8300.c, I forgot updating its comment. As I think this belongs to
typos, I am committing on my own.
Thanks,
Kazu Hirata
2001-01-14 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (get_shift_alg): Update comments.
Index: h8300.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/h8300/h8300.c,v
retrieving revision 1.51
diff -u -r1.51 h8300.c
--- h8300.c 2001/01/10 02:47:50 1.51
+++ h8300.c 2001/01/14 15:30:21
@@ -1996,10 +1996,10 @@
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