diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 18:57:09 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 18:57:09 +0000 |
commit | 24049db97c735788356e1e84cd572237e3242bec (patch) | |
tree | d4da6fa4c9e5c2b532917701f2d280cf5b10c01a /gcc/print-rtl.c | |
parent | cd45159c7ce27cd0eb6412c0cbbc6c2450bd95bf (diff) | |
download | gcc-24049db97c735788356e1e84cd572237e3242bec.tar.gz |
* rtl.h (insn_note): Remove NOTE_INSN_PREDICTION.
* rtl.c (note_insn_name): Likewise.
* print-rtl.c (print_rtx): Don't print it.
* cfgrtl.h (can_delete_note_p): Don't handle it.
(rtl_delete_block): Likewise.
* passes.c (rest_of_handle_guess_branch_prob): Remove.
(rest_of_compilation): Don't call it.
* predict.c (process_note_predictions, process_note_prediction,
note_prediction_to_br_prob): Remove.
* basic-block.c (note_prediction_to_br_prob): Remove prototype.
* stmt.c (return_prediction): Remove.
(expand_value_return): Don't call it. Don't add prediction
notes for return statements.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85016 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index e2febfa48cc..8b211f076ac 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -281,15 +281,6 @@ print_rtx (rtx in_rtx) } break; - case NOTE_INSN_PREDICTION: - if (NOTE_PREDICTION (in_rtx)) - fprintf (outfile, " [ %d %d ] ", - (int)NOTE_PREDICTION_ALG (in_rtx), - (int) NOTE_PREDICTION_FLAGS (in_rtx)); - else - fprintf (outfile, " [ ERROR ]"); - break; - case NOTE_INSN_UNLIKELY_EXECUTED_CODE: { basic_block bb = NOTE_BASIC_BLOCK (in_rtx); |