Commit 0c50ee73 by Kazu Hirata Committed by Kazu Hirata

h8300.c (shift_alg): Remove SHIFT_MAX.

	* config/h8300/h8300.c (shift_alg): Remove SHIFT_MAX.
	(get_shift_alg): Remove redundant code.

From-SVN: r46931
parent fe19a83d
2001-11-11 Kazu Hirata <kazu@hxi.com> 2001-11-11 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (shift_alg): Remove SHIFT_MAX.
(get_shift_alg): Remove redundant code.
2001-11-11 Kazu Hirata <kazu@hxi.com>
* config/pa/milli64.S: Fix comment formatting. * config/pa/milli64.S: Fix comment formatting.
* config/pa/pa-64.h: Likewise. * config/pa/pa-64.h: Likewise.
* config/pa/pa-linux.h: Likewise. * config/pa/pa-linux.h: Likewise.
......
...@@ -1982,8 +1982,7 @@ enum shift_alg ...@@ -1982,8 +1982,7 @@ enum shift_alg
SHIFT_INLINE, SHIFT_INLINE,
SHIFT_ROT_AND, SHIFT_ROT_AND,
SHIFT_SPECIAL, SHIFT_SPECIAL,
SHIFT_LOOP, SHIFT_LOOP
SHIFT_MAX
}; };
/* Symbols of the various shifts which can be used as indices. */ /* Symbols of the various shifts which can be used as indices. */
...@@ -2212,7 +2211,6 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2212,7 +2211,6 @@ get_shift_alg (shift_type, shift_mode, count, info)
info->cc_valid_p = shift_one[cpu_type][shift_type][shift_mode].cc_valid; info->cc_valid_p = shift_one[cpu_type][shift_type][shift_mode].cc_valid;
/* Now look for cases we want to optimize. */ /* Now look for cases we want to optimize. */
switch (shift_mode) switch (shift_mode)
{ {
case QIshift: case QIshift:
...@@ -2238,8 +2236,6 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2238,8 +2236,6 @@ get_shift_alg (shift_type, shift_mode, count, info)
goto return_shift_loop; goto return_shift_loop;
/* Other shifts by 5, 6, or 7 bits use SHIFT_ROT_AND. */ /* Other shifts by 5, 6, or 7 bits use SHIFT_ROT_AND. */
info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
info->shift2 = rotate_two[shift_type][shift_mode];
goto return_shift_rot_and; goto return_shift_rot_and;
} }
...@@ -2316,8 +2312,6 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2316,8 +2312,6 @@ get_shift_alg (shift_type, shift_mode, count, info)
} }
else if (shift_type != SHIFT_ASHIFTRT) else if (shift_type != SHIFT_ASHIFTRT)
{ {
info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
info->shift2 = rotate_two[shift_type][shift_mode];
goto return_shift_rot_and; goto return_shift_rot_and;
} }
} }
...@@ -2409,8 +2403,6 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2409,8 +2403,6 @@ get_shift_alg (shift_type, shift_mode, count, info)
} }
else else
{ {
info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
info->shift2 = rotate_two[shift_type][shift_mode];
goto return_shift_rot_and; goto return_shift_rot_and;
} }
} }
...@@ -2436,8 +2428,6 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2436,8 +2428,6 @@ get_shift_alg (shift_type, shift_mode, count, info)
} }
else else
{ {
info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
info->shift2 = rotate_two[shift_type][shift_mode];
goto return_shift_rot_and; goto return_shift_rot_and;
} }
} }
...@@ -2464,6 +2454,8 @@ get_shift_alg (shift_type, shift_mode, count, info) ...@@ -2464,6 +2454,8 @@ get_shift_alg (shift_type, shift_mode, count, info)
goto end; goto end;
return_shift_rot_and: return_shift_rot_and:
info->shift1 = rotate_one[cpu_type][shift_type][shift_mode];
info->shift2 = rotate_two[shift_type][shift_mode];
info->cc_valid_p = 0; info->cc_valid_p = 0;
info->alg = SHIFT_ROT_AND; info->alg = SHIFT_ROT_AND;
goto end; goto end;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment