diff options
author | Andrew Haley <aph@redhat.com> | 2006-06-23 12:14:44 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2006-06-23 12:14:44 +0000 |
commit | 6de5f432f1e671c985b02a29bea02eb15e7553cc (patch) | |
tree | 9ca7264cd13ebb0aa80f3806562412371dca2e44 /gcc/java/expr.c | |
parent | 410ed785dd9560b052318fe9bd4f41cdc12ef7ed (diff) | |
download | gcc-6de5f432f1e671c985b02a29bea02eb15e7553cc.zip gcc-6de5f432f1e671c985b02a29bea02eb15e7553cc.tar.gz gcc-6de5f432f1e671c985b02a29bea02eb15e7553cc.tar.bz2 |
java-tree.h (update_aliases): Remove
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.
From-SVN: r114931
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 329e363d..a64bda8 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) \ |