diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-23 12:14:44 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-23 12:14:44 +0000 |
commit | 208ca064ed26d6cd3bb8ca6fb13743668435b315 (patch) | |
tree | 9ca7264cd13ebb0aa80f3806562412371dca2e44 /gcc/java/expr.c | |
parent | a3fba4daddf616b94aa79fe0b3c5bda6d9055974 (diff) |
2006-06-21 Andrew Haley <aph@redhat.com>
* java-tree.h (update_aliases): Remove
* expr.c (expand_iinc): Remove call to update_aliases().
(STORE_INTERNAL): Likewise.
* decl.c (update_aliases, initialize_local_variable)
(maybe_pushlevels): Set DECL_VALUE_EXPR for debugging decls.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114931 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r-- | gcc/java/expr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c index 329e363db33d..a64bda8ff02e 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1451,7 +1451,6 @@ expand_iinc (unsigned int local_var_index, int ival, int pc) constant_value = build_int_cst (NULL_TREE, ival); res = fold_build2 (PLUS_EXPR, int_type_node, local_var, constant_value); java_add_stmt (build2 (MODIFY_EXPR, TREE_TYPE (local_var), local_var, res)); - update_aliases (local_var, local_var_index, pc); } @@ -3413,7 +3412,6 @@ process_jvm_instruction (int PC, const unsigned char* byte_ops, decl = find_local_variable (index, type, oldpc); \ set_local_type (index, type); \ java_add_stmt (build2 (MODIFY_EXPR, type, decl, value)); \ - update_aliases (decl, index, PC); \ } #define STORE(OPERAND_TYPE, OPERAND_VALUE) \ |