diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-14 15:36:42 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-14 15:36:42 +0000 |
commit | ec0b80c61894860e4719a2d99b380a7ba5872719 (patch) | |
tree | d19fd27cdb6a89bcaa08d3d92d5150b66208c767 /gcc/config/h8300 | |
parent | d188368224f1b7e6e6e1678cf741e5cf741dfcf5 (diff) | |
download | gcc-ec0b80c61894860e4719a2d99b380a7ba5872719.tar.gz |
2001-01-14 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (get_shift_alg): Update comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39010 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c index 2aeb478d495..c2ebcf61bcb 100644 --- a/gcc/config/h8300/h8300.c +++ b/gcc/config/h8300/h8300.c @@ -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 |