diff options
author | Tom Tromey <tromey@redhat.com> | 2007-01-15 22:43:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-01-15 22:43:45 +0000 |
commit | b7e8993880972b7f641698b1d9f41bb34a80f349 (patch) | |
tree | e12b1fc3f9ab022e6925ee7653ec2d69293f1b9d /gcc/java/java-gimplify.c | |
parent | c98e044dce1ad03b86391a7ebc1285d0c022cbf5 (diff) | |
download | gcc-b7e8993880972b7f641698b1d9f41bb34a80f349.zip gcc-b7e8993880972b7f641698b1d9f41bb34a80f349.tar.gz gcc-b7e8993880972b7f641698b1d9f41bb34a80f349.tar.bz2 |
lang.c (dump_compound_expr): Removed case.
* lang.c (dump_compound_expr) <EXPR_WITH_FILE_LOCATION>: Removed
case.
* java-gimplify.c (java_gimplify_expr) <EXPR_WITH_FILE_LOCATION>:
Removed case.
* java-tree.h (EXPR_WFL_EMIT_LINE_NOTE): Removed.
(EXPR_WFL_NODE): Likewise.
(EXPR_WFL_LINECOL): Likewise.
(EXPR_WFL_FILENAME): Likewise.
(EXPR_WFL_LINENO): Likewise.
(build_expr_wfl, expr_add_location): Don't declare.
(build_unknown_wfl): Removed.
(EXPR_WFL_FILENAME_NODE): Removed.
(EXPR_WFL_COLNO): Removed.
(EXPR_WFL_SET_LINECOL): Removed.
(DECL_FUNCTION_WFL): Removed.
(DECL_FIELD_FINAL_WFL): Removed.
(struct lang_decl_func) <wfl>: Removed field.
<called_constructor>: Likewise.
<inner_access>: Likewise.
(struct lang_decl_var) <wfl>: Removed field.
(DECL_CONSTRUCTOR_CALLS): Removed.
(DECL_FUNCTION_ACCESS_DECL): Likewise.
(DECL_FUNCTION_INNER_ACCESS): Likewise.
(DECL_SPECIFIC_COUNT): Likewise.
* java-tree.def (EXPR_WITH_FILE_LOCATION): Removed.
* expr.c (build_expr_wfl): Removed.
(expr_add_location): Likewise.
From-SVN: r120804
Diffstat (limited to 'gcc/java/java-gimplify.c')
-rw-r--r-- | gcc/java/java-gimplify.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/java/java-gimplify.c b/gcc/java/java-gimplify.c index f084154..96e9009 100644 --- a/gcc/java/java-gimplify.c +++ b/gcc/java/java-gimplify.c @@ -69,18 +69,6 @@ java_gimplify_expr (tree *expr_p, tree *pre_p ATTRIBUTE_UNUSED, *expr_p = java_gimplify_block (*expr_p); break; - case EXPR_WITH_FILE_LOCATION: -#ifdef USE_MAPPED_LOCATION - input_location = EXPR_LOCATION (*expr_p); -#else - input_location.file = EXPR_WFL_FILENAME (*expr_p); - input_location.line = EXPR_WFL_LINENO (*expr_p); -#endif - *expr_p = EXPR_WFL_NODE (*expr_p); - if (EXPR_P (*expr_p)) - SET_EXPR_LOCATION (*expr_p, input_location); - break; - case LABELED_BLOCK_EXPR: *expr_p = java_gimplify_labeled_block_expr (*expr_p); break; |