aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-gimple.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-07-27 18:17:00 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-07-27 18:17:00 -0700
commite847cc68ebc1e2a961941e75ae613fec9f90463b (patch)
tree0c30f61b19cf213402a8b9492ba3424c41e1602b /gcc/tree-gimple.h
parentb91accd685798cd0cb4f775bfcdcc40c18efbdb6 (diff)
downloadgcc-e847cc68ebc1e2a961941e75ae613fec9f90463b.zip
gcc-e847cc68ebc1e2a961941e75ae613fec9f90463b.tar.gz
gcc-e847cc68ebc1e2a961941e75ae613fec9f90463b.tar.bz2
gimplify.c (is_gimple_addr_expr_arg_or_indirect): Remove.
* gimplify.c (is_gimple_addr_expr_arg_or_indirect): Remove. (gimplify_modify_expr, gimplify_addr_expr, gimplify_expr): Use is_gimple_addressable. * tree-gimple.c (is_gimple_addressable): Rename from is_gimple_addr_expr_arg; accept INDIRECT_REF. (is_gimple_lvalue): Don't test INDIRECT_REF directly. * tree-gimple.h, tree-sra.c, tree-ssa-loop-im.c: Update for rename to is_gimple_addressable. From-SVN: r85243
Diffstat (limited to 'gcc/tree-gimple.h')
-rw-r--r--gcc/tree-gimple.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-gimple.h b/gcc/tree-gimple.h
index 3a87503..0fb3766 100644
--- a/gcc/tree-gimple.h
+++ b/gcc/tree-gimple.h
@@ -55,8 +55,8 @@ extern bool is_gimple_tmp_reg (tree);
extern bool is_gimple_variable (tree);
/* Returns true iff T is a variable or an INDIRECT_REF (of a variable). */
extern bool is_gimple_min_lval (tree);
-/* Returns true iff T is an lvalue other than an INDIRECT_REF. */
-extern bool is_gimple_addr_expr_arg (tree);
+/* Returns true iff T is something whose address can be taken. */
+extern bool is_gimple_addressable (tree);
/* Returns true iff T is any valid GIMPLE lvalue. */
extern bool is_gimple_lvalue (tree);