diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2005-05-17 22:02:56 +0200 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2005-05-17 20:02:56 +0000 |
commit | d7bf3bcf99126e5d554a6121d79344a6f3c7bdf2 (patch) | |
tree | e43ca90e30d0a349e9725b82bbd8fe83295a552e /gcc/tree-flow.h | |
parent | 98273e5afbb86bdbe6b2c8164ad674c14e51700d (diff) | |
download | gcc-d7bf3bcf99126e5d554a6121d79344a6f3c7bdf2.zip gcc-d7bf3bcf99126e5d554a6121d79344a6f3c7bdf2.tar.gz gcc-d7bf3bcf99126e5d554a6121d79344a6f3c7bdf2.tar.bz2 |
tree-ssa-loop-ivopts.c (find_bivs, [...]): Apply expand_simple_operations to bases of the ivs.
* tree-ssa-loop-ivopts.c (find_bivs, find_givs_in_stmt_scev): Apply
expand_simple_operations to bases of the ivs.
(tree_int_cst_sign_bit): Export.
* tree-flow.h (expand_simple_operations): Declare.
* tree-ssa-loop-niter.c (number_of_iterations_cond): Use
tree_int_cst_sign_bit.
(expand_simple_operations): Export.
* tree.h (tree_int_cst_sign_bit): Declare.
From-SVN: r99853
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 90bef37..273a26c 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -725,6 +725,7 @@ bool tree_duplicate_loop_to_header_edge (struct loop *, edge, struct loops *, unsigned int *, int); struct loop *tree_ssa_loop_version (struct loops *, struct loop *, tree, basic_block *); +tree expand_simple_operations (tree); /* In tree-ssa-loop-im.c */ /* The possibilities of statement movement. */ |