diff options
author | Tom Tromey <tromey@redhat.com> | 2007-01-11 22:40:13 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-01-11 22:40:13 +0000 |
commit | 6e63e240606beba28ae7b2714c059323d96896d5 (patch) | |
tree | 2a6d291c47f722d46c49688cc8abaf9c5e8de5d3 /gcc/java/expr.c | |
parent | 2a33a75f60261a6012d4840ac3bbe15c5e2c84d8 (diff) | |
download | gcc-6e63e240606beba28ae7b2714c059323d96896d5.zip gcc-6e63e240606beba28ae7b2714c059323d96896d5.tar.gz gcc-6e63e240606beba28ae7b2714c059323d96896d5.tar.bz2 |
typeck.c (convert): Don't use flag_emit_class_files.
* typeck.c (convert): Don't use flag_emit_class_files.
* lang.c (java_post_options): Don't use flag_emit_class_files.
(java_handle_option): Don't use flag_extraneous_semicolon or
flag_redundant.
* jcf-parse.c (HANDLE_CONSTANTVALUE): Don't use
flag_emit_class_files.
(load_class): Likewise.
* java-tree.h (flag_emit_class_files): Don't declare.
(STATIC_CLASS_INIT_OPT_P): Don't use flag_emit_class_files.
(flag_extraneous_semicolon): Don't declare.
(flag_not_overriding): Likewise.
(flag_static_local_jdk1_1): Likewise.
(flag_redundant): Likewise.
* expr.c (build_newarray): Don't use flag_emit_class_files.
* class.c (DEFAULT_ENABLE_ASSERT): Don't use
flag_emit_class_files.
(build_class_ref): Likewise.
* builtins.c (check_for_builtin): Don't use
flag_emit_class_files.
From-SVN: r120687
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r-- | gcc/java/expr.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c index b9d68b0..662ef83 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1059,13 +1059,9 @@ build_newarray (int atype_value, tree length) host_integerp (length, 0) == INTEGER_CST ? tree_low_cst (length, 0) : -1); - /* If compiling to native, pass a reference to the primitive type class - and save the runtime some work. However, the bytecode generator - expects to find the type_code int here. */ - if (flag_emit_class_files) - type_arg = build_int_cst (NULL_TREE, atype_value); - else - type_arg = build_class_ref (prim_type); + /* Pass a reference to the primitive type class and save the runtime + some work. */ + type_arg = build_class_ref (prim_type); return build3 (CALL_EXPR, promote_type (type), build_address_of (soft_newarray_node), |