h8300-protos.h: Replace emit_a_shift with output_a_shift.

* config/h8300/h8300-protos.h: Replace emit_a_shift with
	output_a_shift.
	* config/h8300/h8300.c: Likewise.
	* config/h8300/h8300.md: Likewise.

From-SVN: r48935
This commit is contained in:
Kazu Hirata 2002-01-17 00:25:29 +00:00 committed by Kazu Hirata
parent 4cd533411e
commit af3c90a633
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
2002-01-16 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300-protos.h: Replace emit_a_shift with
output_a_shift.
* config/h8300/h8300.c: Likewise.
* config/h8300/h8300.md: Likewise.
2002-01-16 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.md (pushqi1_h8300): Use a tab instead of

View File

@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */
/* Declarations for functions used in insn-output.c. */
#ifdef RTX_CODE
extern const char *emit_a_shift PARAMS ((rtx, rtx *));
extern const char *output_a_shift PARAMS ((rtx, rtx *));
extern const char *emit_a_rotate PARAMS ((int, rtx *));
extern const char *output_adds_subs PARAMS ((rtx *));
extern const char *output_simode_bld PARAMS ((int, int, rtx[]));

View File

@ -2529,7 +2529,7 @@ get_shift_alg (shift_type, shift_mode, count, info)
/* Emit the assembler code for doing shifts. */
const char *
emit_a_shift (insn, operands)
output_a_shift (insn, operands)
rtx insn ATTRIBUTE_UNUSED;
rtx *operands;
{
@ -3294,7 +3294,7 @@ h8300_adjust_insn_length (insn, length)
shift = INTVAL (XEXP (src, 1));
/* According to ANSI, negative shift is undefined. It is
considered to be zero in this case (see function
emit_a_shift above). */
output_a_shift above). */
if (shift < 0)
shift = 0;

View File

@ -1829,7 +1829,7 @@
(match_operand:QI 2 "nonmemory_operand" "KM,rn")]))
(clobber (match_scratch:QI 4 "=X,&r"))]
""
"* return emit_a_shift (insn, operands);"
"* return output_a_shift (insn, operands);"
[(set_attr "length" "20")
(set_attr "cc" "clobber")])
@ -1863,7 +1863,7 @@
(match_operand:QI 2 "nonmemory_operand" "KM,rn")]))
(clobber (match_scratch:QI 4 "=X,&r"))]
""
"* return emit_a_shift (insn, operands);"
"* return output_a_shift (insn, operands);"
[(set_attr "length" "20")
(set_attr "cc" "clobber")])
@ -1900,7 +1900,7 @@
(match_operand:QI 2 "nonmemory_operand" "K,rn")]))
(clobber (match_scratch:QI 4 "=X,&r"))]
""
"* return emit_a_shift (insn, operands);"
"* return output_a_shift (insn, operands);"
[(set_attr "length" "20")
(set_attr "cc" "clobber")])