diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2004-07-09 22:42:43 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-07-09 22:42:43 +0000 |
commit | dae424695cc2848b137d7fd1ef7d375928101347 (patch) | |
tree | 7643455a8f32d75721933e33a55ab108707148cb /gcc/tree-cfg.c | |
parent | 9e9fb0ce6784ad84623738a559b5f67d78c84125 (diff) | |
download | gcc-dae424695cc2848b137d7fd1ef7d375928101347.zip gcc-dae424695cc2848b137d7fd1ef7d375928101347.tar.gz gcc-dae424695cc2848b137d7fd1ef7d375928101347.tar.bz2 |
md.texi (Processor pipeline description): Mention that the old pipeline description is deprecated.
* doc/md.texi (Processor pipeline description): Mention that
the old pipeline description is deprecated.
* config/rs6000/7450.md (automaton ppc7450): Split up, move
mciu_7450 function unit to...
(automaton ppc7450mciu): ...new automaton.
* haifa-sched.c (insert_schedule_bubbles_p): Remove.
(schedule_block): Don't consider inserting bubbles.
(sched_init): Don't initialize DFA bubbles.
* target-def.h (TARGET_SCHED_INIT_DFA_BUBBLES,
TARGET_SCHED_DFA_BUBBLE): Remove.
* target.h (init_dfa_bubbles, dfa_bubble): Remove hooks.
* doc/tm.texi (TARGET_SCHED_INIT_DFA_BUBBLES,
TARGET_SCHED_DFA_BUBBLE): Remove documentation.
* stmt.c (conditional_context): Remove prototype.
* tree.h (conditional_context): Remove.
* tree-cfg.c (pre_insert_on_edge): Remove.
* c-common.h (c_expand_asm_operands): Remove prototype.
* c-typeck.c (c_expand_asm_operands): Remove.
cp/
* typeck.c (c_expand_asm_operands): Remove.
From-SVN: r84411
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 3c790b4..bd2ec9a 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -3038,27 +3038,6 @@ bsi_insert_on_edge (edge e, tree stmt) } -/* Specialized edge insertion for SSA-PRE. FIXME: This should - probably disappear. The only reason it's here is because PRE needs - the call to tree_find_edge_insert_loc(). */ - -void pre_insert_on_edge (edge e, tree stmt); - -void -pre_insert_on_edge (edge e, tree stmt) -{ - block_stmt_iterator bsi; - - if (PENDING_STMT (e)) - abort (); - - if (tree_find_edge_insert_loc (e, &bsi)) - bsi_insert_after (&bsi, stmt, BSI_NEW_STMT); - else - bsi_insert_before (&bsi, stmt, BSI_NEW_STMT); -} - - /*--------------------------------------------------------------------------- Tree specific functions for CFG manipulation ---------------------------------------------------------------------------*/ |