Commit f5db61ef by Kaveh R. Ghazi Committed by Kaveh Ghazi

haifa-sched.c (sched_analyze): Rename local variable `region' to avoid conflicts…

haifa-sched.c (sched_analyze): Rename local variable `region' to avoid conflicts with typedef struct `region'...

       * haifa-sched.c (sched_analyze): Rename local variable `region' to
       avoid conflicts with typedef struct `region' at the top level scope.

From-SVN: r29567
parent 49d385e3
Tue Sep 21 18:27:34 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* haifa-sched.c (sched_analyze): Rename local variable `region' to
avoid conflicts with typedef struct `region' at the top level scope.
Tue Sep 21 14:14:50 1999 Richard Henderson <rth@cygnus.com>
* basic-block.h (basic_block): Add eh_beg, eh_end.
......
......@@ -3940,16 +3940,16 @@ sched_analyze (head, tail)
|| (NOTE_LINE_NUMBER (insn) == NOTE_INSN_SETJMP
&& GET_CODE (PREV_INSN (insn)) != CALL_INSN)))
{
rtx region;
rtx rtx_region;
if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG
|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_END)
region = GEN_INT (NOTE_EH_HANDLER (insn));
rtx_region = GEN_INT (NOTE_EH_HANDLER (insn));
else
region = GEN_INT (0);
rtx_region = GEN_INT (0);
loop_notes = alloc_EXPR_LIST (REG_DEAD,
region,
rtx_region,
loop_notes);
loop_notes = alloc_EXPR_LIST (REG_DEAD,
GEN_INT (NOTE_LINE_NUMBER (insn)),
......
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