diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-10-18 18:01:10 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-10-18 14:01:10 -0400 |
commit | 1a1804c27017289c540fd8b193209a8598af858a (patch) | |
tree | 65fa2dda5884adcb69fca3aa5ca69487f2799ab4 /gcc/tree-flow.h | |
parent | bca9e17b5aade3e19ae49ff9c211510674b46a02 (diff) | |
download | gcc-1a1804c27017289c540fd8b193209a8598af858a.zip gcc-1a1804c27017289c540fd8b193209a8598af858a.tar.gz gcc-1a1804c27017289c540fd8b193209a8598af858a.tar.bz2 |
tree-cfg.c (bsi_for_stmt): Rename from stmt_for_bsi.
* tree-cfg.c (bsi_for_stmt): Rename from stmt_for_bsi.
Update all callers.
* tree-ssa.c (replace_immediate_uses): Call bsi_for_stmt.
Don't call fold_stmt more than once, use bsi_replace.
From-SVN: r89234
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index c26e91b..4db7fa9 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -416,7 +416,7 @@ typedef struct { static inline block_stmt_iterator bsi_start (basic_block); static inline block_stmt_iterator bsi_last (basic_block); static inline block_stmt_iterator bsi_after_labels (basic_block); -block_stmt_iterator stmt_for_bsi (tree); +block_stmt_iterator bsi_for_stmt (tree); static inline bool bsi_end_p (block_stmt_iterator); static inline void bsi_next (block_stmt_iterator *); static inline void bsi_prev (block_stmt_iterator *); |