diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-01 08:41:53 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-01 08:41:53 +0000 |
commit | 92ddcd9701b4dd0fde3d3c640cdb6a1f49c0f7a2 (patch) | |
tree | 9cd3add9e373b84961bc956ed0b4d7217321694d /gcc/explow.c | |
parent | f639fdbff97b434f0ee9d6d2f03b6c5483efbed2 (diff) | |
download | gcc-92ddcd9701b4dd0fde3d3c640cdb6a1f49c0f7a2.tar.gz |
2009-09-01 Richard Guenther <rguenther@suse.de>
* tree.c (tree_expr_size): New function.
* tree.h (tree_expr_size): Declare.
* rtlanal.c (rtx_addr_can_trap_p_1): Adjust comment.
* builtins.c (fold_builtin_memory_op): Use tree_expr_size.
* langhooks.c (lhd_expr_size): Remove.
* langhooks.h (struct lang_hooks): Remove expr_size.
* explow.c (expr_size): Use tree_expr_size.
(int_expr_size): Likewise.
* langhooks-def.h (lhd_expr_size): Remove.
(LANG_HOOKS_EXPR_SIZE): Likewise.
(LANG_HOOKS_INITIALIZER): Adjust.
cp/
* cp-objcp-common.c (cp_expr_size): Use tree_expr_size.
* cp-objcp-common.h (LANG_HOOKS_EXPR_SIZE): Do not define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151261 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 933eac81bb1..3073ff0eb91 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -246,7 +246,7 @@ expr_size (tree exp) size = TREE_OPERAND (exp, 1); else { - size = lang_hooks.expr_size (exp); + size = tree_expr_size (exp); gcc_assert (size); gcc_assert (size == SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, exp)); } @@ -266,7 +266,7 @@ int_expr_size (tree exp) size = TREE_OPERAND (exp, 1); else { - size = lang_hooks.expr_size (exp); + size = tree_expr_size (exp); gcc_assert (size); } |