Commit f1c7ce82 by Jeff Law

pa.c (legitimize_pic_address): Delete unused variables.

	* pa.c (legitimize_pic_address): Delete unused variables.
	(output_block_move, output_ior): Likewise.
	(hppa_builtin_saveregs): Likewise.
	(emit_move_sequence): Add parens as suggested by -Wall.
	(compute_frame_size): Likewise.
	(output_ascii): Return type is "void".
	(hppa_expand_prologue, import_milli): Likewise.

From-SVN: r5726
parent bf0add70
...@@ -484,7 +484,7 @@ legitimize_pic_address (orig, mode, reg) ...@@ -484,7 +484,7 @@ legitimize_pic_address (orig, mode, reg)
} }
else if (GET_CODE (orig) == CONST) else if (GET_CODE (orig) == CONST)
{ {
rtx base, offset; rtx base;
if (GET_CODE (XEXP (orig, 0)) == PLUS if (GET_CODE (XEXP (orig, 0)) == PLUS
&& XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx) && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
...@@ -854,7 +854,7 @@ emit_move_sequence (operands, mode, scratch_reg) ...@@ -854,7 +854,7 @@ emit_move_sequence (operands, mode, scratch_reg)
} }
/* Simplify the source if we need to. */ /* Simplify the source if we need to. */
if (GET_CODE (operand1) != HIGH && immediate_operand (operand1, mode) if ((GET_CODE (operand1) != HIGH && immediate_operand (operand1, mode))
|| (GET_CODE (operand1) == HIGH || (GET_CODE (operand1) == HIGH
&& symbolic_operand (XEXP (operand1, 0), mode))) && symbolic_operand (XEXP (operand1, 0), mode)))
{ {
...@@ -1393,7 +1393,6 @@ output_block_move (operands, size_is_constant) ...@@ -1393,7 +1393,6 @@ output_block_move (operands, size_is_constant)
if (size_is_constant) if (size_is_constant)
{ {
unsigned long n_items;
unsigned long offset; unsigned long offset;
rtx temp; rtx temp;
...@@ -1567,9 +1566,7 @@ compute_movstrsi_length (insn) ...@@ -1567,9 +1566,7 @@ compute_movstrsi_length (insn)
if (size_is_constant) if (size_is_constant)
{ {
unsigned long n_items;
unsigned long offset; unsigned long offset;
rtx temp;
if (n_bytes == 0) if (n_bytes == 0)
return 0; return 0;
...@@ -1705,7 +1702,7 @@ output_ior (operands) ...@@ -1705,7 +1702,7 @@ output_ior (operands)
rtx *operands; rtx *operands;
{ {
unsigned mask = INTVAL (operands[2]); unsigned mask = INTVAL (operands[2]);
int bs0, bs1, bs2, p, len; int bs0, bs1, p, len;
if (INTVAL (operands[2]) == 0) if (INTVAL (operands[2]) == 0)
return "copy %1,%0"; return "copy %1,%0";
...@@ -1730,6 +1727,7 @@ output_ior (operands) ...@@ -1730,6 +1727,7 @@ output_ior (operands)
} }
/* Output an ascii string. */ /* Output an ascii string. */
void
output_ascii (file, p, size) output_ascii (file, p, size)
FILE *file; FILE *file;
unsigned char *p; unsigned char *p;
...@@ -1999,7 +1997,7 @@ compute_frame_size (size, fregs_live) ...@@ -1999,7 +1997,7 @@ compute_frame_size (size, fregs_live)
fsize += current_function_outgoing_args_size; fsize += current_function_outgoing_args_size;
if (! leaf_function_p () || fsize) if (! leaf_function_p () || fsize)
fsize += 32; fsize += 32;
return fsize + 63 & ~63; return (fsize + 63) & ~63;
} }
rtx hp_profile_label_rtx; rtx hp_profile_label_rtx;
...@@ -2044,6 +2042,7 @@ output_function_prologue (file, size) ...@@ -2044,6 +2042,7 @@ output_function_prologue (file, size)
sprintf(hp_profile_label_name, "LP$%04d", hp_profile_labelno); sprintf(hp_profile_label_name, "LP$%04d", hp_profile_labelno);
} }
void
hppa_expand_prologue() hppa_expand_prologue()
{ {
...@@ -3022,7 +3021,7 @@ static char *milli_names[] = {"remI", "remU", "divI", "divU", "mulI", "mulU"}; ...@@ -3022,7 +3021,7 @@ static char *milli_names[] = {"remI", "remU", "divI", "divU", "mulI", "mulU"};
static char import_string[] = ".IMPORT $$....,MILLICODE"; static char import_string[] = ".IMPORT $$....,MILLICODE";
#define MILLI_START 10 #define MILLI_START 10
static int static void
import_milli (code) import_milli (code)
enum millicodes code; enum millicodes code;
{ {
...@@ -3324,7 +3323,7 @@ struct rtx_def * ...@@ -3324,7 +3323,7 @@ struct rtx_def *
hppa_builtin_saveregs (arglist) hppa_builtin_saveregs (arglist)
tree arglist; tree arglist;
{ {
rtx block, float_addr, offset, float_mem; rtx offset;
tree fntype = TREE_TYPE (current_function_decl); tree fntype = TREE_TYPE (current_function_decl);
int argadj = ((!(TYPE_ARG_TYPES (fntype) != 0 int argadj = ((!(TYPE_ARG_TYPES (fntype) != 0
&& (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype))) && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
......
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