Commit ebc25a17 by Michael Meissner Committed by Michael Meissner

Use rtl macros for names of NOTEs.

From-SVN: r14810
parent 62603f9e
Fri Aug 15 13:43:39 1997 Michael Meissner <meissner@cygnus.com>
* haifa-sched.c (debug_dependencies): Use GET_NOTE_INSN_NAME to
print out the names of the notes. Print out the name of the insn
that is not a note, and not an {,CALL_,JUMP_}INSN.
Wed Aug 13 01:03:37 1997 Doug Evans <dje@canuck.cygnus.com> Wed Aug 13 01:03:37 1997 Doug Evans <dje@canuck.cygnus.com>
* configure.in (haifa configury): Fix typo. * configure.in (haifa configury): Fix typo.
......
...@@ -7374,51 +7374,16 @@ debug_dependencies () ...@@ -7374,51 +7374,16 @@ debug_dependencies ()
int n; int n;
fprintf (dump, ";; %6d ", INSN_UID (insn)); fprintf (dump, ";; %6d ", INSN_UID (insn));
if (GET_CODE (insn) == NOTE) if (GET_CODE (insn) == NOTE)
switch (n = NOTE_LINE_NUMBER (insn)) {
{ n = NOTE_LINE_NUMBER (insn);
case NOTE_INSN_DELETED: if (n < 0)
fprintf (dump, "NOTE_INSN_DELETED"); fprintf (dump, "%s\n", GET_NOTE_INSN_NAME (n));
break; else
case NOTE_INSN_BLOCK_BEG: fprintf (dump, "line %d, file %s\n", n,
fprintf (dump, "NOTE_INSN_BLOCK_BEG"); NOTE_SOURCE_FILE (insn));
break; }
case NOTE_INSN_BLOCK_END: else
fprintf (dump, "NOTE_INSN_BLOCK_END"); fprintf (dump, " {%s}\n", GET_RTX_NAME (insn));
break;
case NOTE_INSN_LOOP_BEG:
fprintf (dump, "NOTE_INSN_LOOP_BEG");
break;
case NOTE_INSN_LOOP_END:
fprintf (dump, "NOTE_INSN_LOOP_END");
break;
case NOTE_INSN_LOOP_CONT:
fprintf (dump, "NOTE_INSN_LOOP_CONT");
break;
case NOTE_INSN_LOOP_VTOP:
fprintf (dump, "NOTE_INSN_LOOP_VTOP");
break;
case NOTE_INSN_FUNCTION_BEG:
fprintf (dump, "NOTE_INSN_FUNCTION_BEG");
break;
case NOTE_INSN_FUNCTION_END:
fprintf (dump, "NOTE_INSN_FUNCTION_END");
break;
case NOTE_INSN_EH_REGION_BEG:
fprintf (dump, "NOTE_INSN_EH_REGION_BEG");
break;
case NOTE_INSN_EH_REGION_END:
fprintf (dump, "NOTE_INSN_EH_REGION_END");
break;
case NOTE_INSN_SETJMP:
fprintf (dump, "NOTE_INSN_SETJMP");
break;
default:
if (n > 0)
fprintf (dump, "NOTE_LINE_NUMBER %d", n);
else
fprintf (dump, "??? UNRECOGNIZED NOTE %d", n);
}
fprintf (dump, "\n");
continue; continue;
} }
......
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