Commit 308c142a by Stan Shebs Committed by Stan Shebs

rs6000.c (rs6000_emit_prologue): Remove unused local var dwarfp.

        * config/rs6000/rs6000.c (rs6000_emit_prologue): Remove unused
        local var dwarfp.
        (output_compiler_stub): Remove unused locals.
        (output_call): Always initialize line number.

From-SVN: r55758
parent 59324685
2002-07-25 Stan Shebs <shebs@apple.com>
* config/rs6000/rs6000.c (rs6000_emit_prologue): Remove unused
local var dwarfp.
(output_compiler_stub): Remove unused locals.
(output_call): Always initialize line number.
Thu Jul 25 20:34:50 2002 J"orn Rennecke <joern.rennecke@superh.com> Thu Jul 25 20:34:50 2002 J"orn Rennecke <joern.rennecke@superh.com>
* sh.h (LOAD_EXTEND_OP): QImode zero-extends on SHmedia. * sh.h (LOAD_EXTEND_OP): QImode zero-extends on SHmedia.
......
...@@ -10191,10 +10191,9 @@ rs6000_emit_prologue () ...@@ -10191,10 +10191,9 @@ rs6000_emit_prologue ()
the store-multiple instructions. */ the store-multiple instructions. */
if (using_store_multiple) if (using_store_multiple)
{ {
rtvec p, dwarfp; rtvec p;
int i; int i;
p = rtvec_alloc (32 - info->first_gp_reg_save); p = rtvec_alloc (32 - info->first_gp_reg_save);
dwarfp = rtvec_alloc (32 - info->first_gp_reg_save);
for (i = 0; i < 32 - info->first_gp_reg_save; i++) for (i = 0; i < 32 - info->first_gp_reg_save; i++)
{ {
rtx addr, reg, mem; rtx addr, reg, mem;
...@@ -12597,8 +12596,7 @@ output_compiler_stub () ...@@ -12597,8 +12596,7 @@ output_compiler_stub ()
{ {
char tmp_buf[256]; char tmp_buf[256];
char label_buf[256]; char label_buf[256];
char *label; tree stub;
tree tmp_stub, stub;
if (!flag_pic) if (!flag_pic)
for (stub = stub_list; stub; stub = TREE_CHAIN (stub)) for (stub = stub_list; stub; stub = TREE_CHAIN (stub))
...@@ -12684,7 +12682,7 @@ output_call (insn, call_dest, operand_number) ...@@ -12684,7 +12682,7 @@ output_call (insn, call_dest, operand_number)
if (no_previous_def (funname)) if (no_previous_def (funname))
{ {
int line_number; int line_number = 0;
rtx label_rtx = gen_label_rtx (); rtx label_rtx = gen_label_rtx ();
char *label_buf, temp_buf[256]; char *label_buf, temp_buf[256];
ASM_GENERATE_INTERNAL_LABEL (temp_buf, "L", ASM_GENERATE_INTERNAL_LABEL (temp_buf, "L",
......
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