aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-07-15decl.c (xref_basetypes): Refactor.Nathan Sidwell4-212/+200
* decl.c (xref_basetypes): Refactor. * tree.c (copy_base_binfos): Replace with ... (copy_binfo): ... this. Deep copy the given binfo, (not the just bases of the given base). * cp-tree.h (copy_base_binfo): Remove. (copy_binfo): Declare. From-SVN: r84758
2004-07-15name-lookup.c (set_inherited_value_binding_p): Add class_type parameter.Mark Mitchell2-18/+14
* name-lookup.c (set_inherited_value_binding_p): Add class_type parameter. (get_class_binding): Adjust. (push_class_level_binding): Don't use set_inherited_value_binding_p. From-SVN: r84757
2004-07-15class.c (finish_struct_bits): Don't set TYPE_HAS_CONVERSION here.Nathan Sidwell3-29/+18
* class.c(finish_struct_bits): Don't set TYPE_HAS_CONVERSION here. * decl.c (xref_basetypes): Set it here. From-SVN: r84756
2004-07-15re PR fortran/15324 (segfault / ICE with array of assumed length characters)Tobias Schlüter1-1/+1
PR fortran/15324 * trans-array.c gfc_trans_g77_array, gfc_trans_dummy_array_bias): Don't call gfc_trans_string_init for assumed length characters. (gfc_conv_expr_descriptor): Set se->string_length if dealing with a character expression. (gfc_cvonv_array_parameter): Pass string length when passing character array according to g77 conventions. Fix ChangeLog From-SVN: r84755
2004-07-15re PR fortran/15324 (segfault / ICE with array of assumed length characters)Tobias Schlüter2-0/+27
PR fortran/15324 * gfortran.dg/pr15324.f90: New test. From-SVN: r84754
2004-07-15loop.c (check_insn_for_givs): Restore check for code labels that was ↵Jeff Law2-1/+6
accidentally deleted by a recent checkin. * loop.c (check_insn_for_givs): Restore check for code labels that was accidentally deleted by a recent checkin. From-SVN: r84753
2004-07-15re PR libfortran/15234 (libgfortran doesn't compile on Tru64 UNIX V4.0F)Tobias Schlüter2-3/+27
PR fortran/15234 * trans-array.c gfc_trans_g77_array, gfc_trans_dummy_array_bias): Don't call gfc_trans_string_init for assumed length characters. (gfc_conv_expr_descriptor): Set se->string_length if dealing with a character expression. (gfc_cvonv_array_parameter): Pass string length when passing character array according to g77 conventions. From-SVN: r84752
2004-07-15Fix a ChangeLog typo.Jakub Jelinek1-1/+1
From-SVN: r84750
2004-07-15acinclude.m4: "Inline" LIBGCJ_CONFIGURE macro into...Nathanael Nerode5-835/+695
* acinclude.m4: "Inline" LIBGCJ_CONFIGURE macro into... * configure.in: ...here. * aclocal.m4: Regenerate. * configure: Regenerate. From-SVN: r84749
2004-07-15class.c (check_bases): Don't set CLASSTYPE_NON_AGGREGATE here.Nathan Sidwell3-27/+25
* class.c (check_bases): Don't set CLASSTYPE_NON_AGGREGATE here. Don't check for incomplete base. (get_vfield_name): Simplify while loop. * decl.c (xref_basetypes): Set CLASSTYPE_NON_AGGREGATE here. From-SVN: r84747
2004-07-15vec.h (VEC_T_truncate): Allow truncation of an empty vector.Nathan Sidwell2-8/+15
* vec.h (VEC_T_truncate): Allow truncation of an empty vector. (VEC_T_quick_insert, VEC_T_ordered_remove): Fix sizeof(T) thinko. From-SVN: r84746
2004-07-15* print-tree.c (print_node): Fix casts last change.Richard Henderson2-2/+8
From-SVN: r84745
2004-07-15aclocal.m4: Rebuilt with aclocal gcj-1.4.Nathanael Nerode7-1470/+21
* aclocal.m4: Rebuilt with aclocal gcj-1.4. * configure: Rebuilt with autoconf 2.13. * Makefile.in, gcj/Makefile.in, include/Makefile.in, testsuite/Makefile.in: Rebuilt with automake gcj-1.4. From-SVN: r84743
2004-07-14trans.c (add_decl_expr): Clear TREE_READONLY if clear DECL_INITIAL.Richard Kenner3-0/+11
* trans.c (add_decl_expr): Clear TREE_READONLY if clear DECL_INITIAL. * utils.c (unchecked_convert): Don't do two VIEW_CONVERT_EXPRs. From-SVN: r84742
2004-07-15lex.c (cxx_make_type): Remove call to get_pointer_type.Mark Mitchell2-5/+5
* lex.c (cxx_make_type): Remove call to get_pointer_type. (set_inherited_value_binding_p): Add class_type parameter. (get_class_binding): Adjust. (push_class_level_binding): Don't use set_inherited_value_binding_p. From-SVN: r84741
2004-07-15* gcc.dg/20020426-2.c: Improve type safety wrt unsignedness.Mike Stump2-3/+7
From-SVN: r84739
2004-07-15dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO to ↵Paul Brook14-20/+78
TARGET_UNWIND_INFO. * dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO to TARGET_UNWIND_INFO. * except.c (output_function_exception_table): Ditto. * except.h: Ditto. * opts.c (decode_options): Ditto. * passes.c (rest_of_handle_final): Ditto. * final.c (final_start_function): Ditto. (final_scan_insn, final_scan_insn): Replace IA64_UNWIND_EMIT with target hook. * targhooks.h (default_unwind_emit): Declare. * targhooks.c (default_unwind_emit): New function. * target-def.h: Define and use TARGET_UNWIND_EMIT. * target.h (struct gcc_target): Add unwind_emit. * config/ia64/ia64.c (TARGET_UNWIND_EMIT): Define. * config/ia64/ia64.h: Rename IA64_UNWIND_INFO to TARGET_UNWIND_INFO. Remove IA64_UNWIND_EMIT. * doc/tm.texi: Document TARGET_UNWIND_EMIT and TARGET_UNWIND_INFO. From-SVN: r84734
2004-07-15re PR libgcj/16204 (File I/O fails on files >= 2^31 bytes (2GB))Bryce McKinlay5-1/+50
2004-07-14 Bryce McKinlay <mckinlay@redhat.com> PR libgcj/16204 * Makefile.am (AM_CXXFLAGS): Add -D_FILE_OFFSET_BITS=64 to enable large file support. * Makefile.in: Rebuilt. * testsuite/libjava.lang/LargeFile.java: New test case. * testsuite/libjava.lang/LargeFile.out: New file. From-SVN: r84733
2004-07-14* print-tree.c (print_node): Handle SSA_NAME.Richard Henderson2-0/+30
From-SVN: r84729
2004-07-14Fix MIPS SPEC95 FP 146.wave5 -fprofile-generate failure.James E Wilson4-2/+58
PR target/16325 * config/mips/mips.h (STARTING_FRAME_OFFSET): When flag_profile_value and ! TARGET_64BIT, include REG_PARM_STACK_SPACE. * gcc.dg/profile-generate-1.c: New. From-SVN: r84727
2004-07-15Daily bump.GCC Administrator2-2/+2
From-SVN: r84725
2004-07-15expr.c (expand_assignment): Reenable bitfield += optimizations.Jakub Jelinek5-21/+372
* expr.c (expand_assignment): Reenable bitfield += optimizations. Use alias set 0 for memory, do proper mode calculations and adjust address for memories. * gcc.c-torture/execute/20040709-1.c: New test. * gcc.c-torture/execute/20040709-2.c: New test. From-SVN: r84722
2004-07-14input.h: If USE_MAPPED_LOCATION...Per Bothner4-6/+26
* input.h: If USE_MAPPED_LOCATION, define separate expanded_location structure with extra column field. * tree.c (expand_location): Also fill in column field. * gengtype-lex.l: Ignore expanded_location typedef, sinze gengtype gets confused by the two conditionally-compiled definitions. From-SVN: r84721
2004-07-14re PR libstdc++/16505 ([3.4 only] std::uninitialized_fill_n() incorrect ↵Paolo Carlini5-27/+69
signature) 2004-07-14 Paolo Carlini <pcarlini@suse.de> PR libstdc++/16505 * include/bits/stl_uninitialized.h (uninitialized_fill_n): Fix the signature to return void, as per 20.4.4.3. * include/bits/stl_vector.h (vector::vector(size_type, const value_type&, const allocator_type&), vector::vector(size_type), vector::_M_initialize_dispatch): Adjust callers. * include/bits/vector.tcc (vector<>::_M_fill_assign, vector<>::_M_fill_insert): Likewise. * testsuite/20_util/memory/16505.cc: New. From-SVN: r84720
2004-07-14calls.c (expand_call): Fix typo in comment.Eric Christopher2-24/+28
2004-07-14 Eric Christopher <echristo@redhat.com> * calls.c (expand_call): Fix typo in comment. From-SVN: r84719
2004-07-14ia64.c (ia64_expand_compare): Allow ORDERED comparision of TFmode.Steve Ellcey2-0/+6
* config/ia64/ia64.c (ia64_expand_compare): Allow ORDERED comparision of TFmode. From-SVN: r84718
2004-07-14* gcc.dg/wint_t-1.c: Expect to pass on darwin 10.3.x and later.Mike Stump2-1/+5
From-SVN: r84717
2004-07-15Remove backup file.Jakub Jelinek1-20/+0
From-SVN: r84716
2004-07-14EventHandler.java: Remove debugging statements.Jerry Quinn2-3/+4
2004-07-14 Jerry Quinn <jlquinn@optonline.net> * java/beans/EventHandler.java: Remove debugging statements. From-SVN: r84715
2004-07-14EventHandler.java: New file.Jerry Quinn7-12/+415
2004-07-14 Jerry Quinn <jlquinn@optonline.net> * java/beans/EventHandler.java: New file. * Makefile.am (awt_java_source_files): Add EventHandler.java. * Makefile.in, gcj/Makefile.in, include/Makefile.in, testsuite/Makefile.in: Regenerate. From-SVN: r84714
2004-07-14alpha.c (alpha_gimplify_va_arg_1): Move indirect ...Richard Henderson9-63/+58
* config/alpha/alpha.c (alpha_gimplify_va_arg_1): Move indirect ... (alpha_gimplify_va_arg): ... handling here. Use pass_by_reference. * config/c4x/c4x.c (c4x_gimplify_va_arg_expr): Use pass_by_reference. * config/i386/i386.c (ix86_gimplify_va_arg): Likewise. * config/i860/i860.c (i860_gimplify_va_arg_expr): Likewise. * config/ia64/ia64.c (ia64_gimplify_va_arg): Likewise. * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Likewise. * config/sh/sh.c (sh_gimplify_va_arg_expr): Likewise. * config/xtensa/xtensa.c (xtensa_gimplify_va_arg_expr): Likewise. From-SVN: r84713
2004-07-14darwin.h (WINT_TYPE): Define to be int to match system header files.Mike Stump2-0/+7
* config/darwin.h (WINT_TYPE): Define to be int to match system header files. From-SVN: r84711
2004-07-14jacks.exp (gcj_jacks_write): Add deprecation flag to the gcj_setup.Andreas Tobler3-61/+24
2004-07-14 Andreas Tobler <a.tobler@schweiz.ch> * testsuite/libjava.jacks/jacks.exp (gcj_jacks_write): Add deprecation flag to the gcj_setup. (gcj_jacks_run): Check tclsh version and launch jacks directly with the tclsh. * testsuite/libjava.jacks/jacks.xfail: Update fails to reflect the deprecation flag change. 58 XFAILS removed. From-SVN: r84710
2004-07-14xtensa.c (function_arg_advance): Check for args that must be passed in the ↵Bob Wilson2-2/+11
stack. * config/xtensa/xtensa.c (function_arg_advance): Check for args that must be passed in the stack. (xtensa_gimplify_va_arg_expr): Skip special-case padding for small arguments if the size is not a constant. From-SVN: r84708
2004-07-14* gcc.dg/wchar_t-1.c: Expect to pass on darwin 10.3.x and later.Mike Stump2-1/+5
From-SVN: r84706
2004-07-14c-typeck.c (emit_side_effect_warnings): Use EXPR_HAS_LOCATION instead of ↵Per Bothner3-3/+10
EXPR_LOCUS in a boolean context... * c-typeck.c (emit_side_effect_warnings): Use EXPR_HAS_LOCATION instead of EXPR_LOCUS in a boolean context, which is always true if --enable-mapped-location. * stmt.c (warn_if_unused_value): Likewise. Also use EXPR_LOCATION. From-SVN: r84698
2004-07-14dominance.c (struct dom_info): Add fake_exit_edge.Richard Henderson2-13/+70
* dominance.c (struct dom_info): Add fake_exit_edge. (init_dom_info): Allocate it. (free_dom_info): Free it. (calc_dfs_tree): Set it. Handle noreturn and infinite loops in two passes. (calc_idoms): Honor fake_exit_edge. From-SVN: r84697
2004-07-14tree-gimple.c (is_gimple_reg_rhs, [...]): New fns.Jason Merrill4-33/+80
* tree-gimple.c (is_gimple_reg_rhs, is_gimple_mem_rhs): New fns. (rhs_test_for): New fn. (is_gimple_tmp_rhs): Rename from is_gimple_rhs. * tree-gimple.h: Declare them. * gimplify.c (gimplify_modify_expr): Use the new fns. From-SVN: r84696
2004-07-14arm-protos.h (arm_va_arg): Remove.Richard Henderson4-49/+19
* config/arm/arm-protos.h (arm_va_arg): Remove. * config/arm/arm.c (arm_va_arg): Remove. (arm_init_expanders): Fix alignment of arg_pointer_rtx. * config/arm/arm.h (EXPAND_BUILTIN_VA_ARG): Remove. From-SVN: r84695
2004-07-14pa.c (fix_range): New function to mark a range(s) of registers as fixed ↵John David Anglin4-16/+120
registers. * pa.c (fix_range): New function to mark a range(s) of registers as fixed registers. (override_options): Call fix_range if the -mfixed-range option string is not empty. * pa.h (TARGET_OPTIONS): Add -mfixed-range option. * doc/invoke.texi (-mfixed-range): Document new option. From-SVN: r84690
2004-07-14cp-tree.h (IDENTIFIER_VALUE): Remove.Mark Mitchell9-445/+371
* cp-tree.h (IDENTIFIER_VALUE): Remove. (BINFO_PUSHDECLS_MARKED): Likewise. (maybe_inject_for_scope_var): Likewise. (push_class_decls): Likewise. * name-lookup.h (push_class_binding): Remove. (innermost_non_namespace_value): New function. (outer_binding): Likewise. * class.c (add_method): Push bindings before adding to TYPE_METHODS. (restore_class_cache): Do not restore class_shadowed. (pushclass): Do not add USING_DECLs. Do not call push_class_decls. * config-lang.in (gtfiles): Remove $(srcdir)/cp/search.c. * decl.c (pushdecl): Use outer_binding. (poplevel): Set the scope for an out-of-scope for-loop declaration appropriately. (cp_finish_decl): Don't call maybe_inject_for_scope_var. * name-lookup.c (new_class_binding): New function. (push_binding): Use it. (pushdecl): Use innermost_non_namespace_value. (maybe_inject_for_scope_var): Remove. (push_class_binding): Remove. (set_inherited_value_binding_p): New function. (get_class_binding): New function. (push_class_level_binding): Assert that the current_class_type is being defined. (outer_binding): New function. (innermost_non_namespace_value): Likewise. (lookup_name_real): Use outer_binding. (lookup_name_current_level): Ignore out-of-scope variables. * pt.c (check_template_shadow): Use innermost_non_namespace_value. (lookup_template_class): Likewise. * search.c (dfs_push_type_decls): Remove. (dfs_push_decls): Likewise. (setup_class_bindings): Likewise. (lookup_field_1): Handle USING_DECLs from dependent scopes. (marked_pushdecls_p): Remove. (unmarked_pushdecls_p): Remove. (marked_identifiers): Remove. (setup_class_bindings): Remove. (dfs_push_type_decls): Remove. (dfs_push_decls): Remove. (push_class_decls): Remove. From-SVN: r84689
2004-07-14rs6000.c (function_arg_padding): Do not pad SFmode for TARGET_64BIT.David Edelsohn2-11/+19
* config/rs6000/rs6000.c (function_arg_padding): Do not pad SFmode for TARGET_64BIT. (rs6000_gimplify_va_arg): Use size_int instead of build_int_2. From-SVN: r84688
2004-07-1412658_thread-1.cc, [...]: Use __gnu_test::try_named_locale.Paolo Carlini3-4/+11
2004-07-14 Paolo Carlini <pcarlini@suse.de> * testsuite/22_locale/locale/cons/12658_thread-1.cc, 12658_thread-2.cc: Use __gnu_test::try_named_locale. From-SVN: r84687
2004-07-14expmed.c (expand_sdiv_pow2): New function to expand signed division by a ↵Roger Sayle2-32/+57
positive power of two... * expmed.c (expand_sdiv_pow2): New function to expand signed division by a positive power of two, split out from expand_divmod. Provide an alternate implementation when shifts are expensive. Lower the threshold for using a branchless implementation to BRANCH_COST >= 2. (expand_divmod): Call expand_sdiv_pow2 for suitable divisions. From-SVN: r84686
2004-07-14tree-dfa.c (make_rename_temp): *Really* work just like create_tmp_var if ↵Paolo Bonzini2-1/+6
called while outside SSA form. 2004-07-14 Paolo Bonzini <bonzini@gnu.org> * tree-dfa.c (make_rename_temp): *Really* work just like create_tmp_var if called while outside SSA form. From-SVN: r84685
2004-07-14* trans.c (gnat_init_stmt_group): Remove duplicate definition.Andreas Schwab2-22/+4
From-SVN: r84684
2004-07-14s390.md ("udivsi3"): Ensure trap is generated for division by zero.Ulrich Weigand5-5/+174
gcc/ChangeLog: * config/s390/s390.md ("udivsi3"): Ensure trap is generated for division by zero. ("umodsi3"): Likewise. libjava/ChangeLog: * configure.host (DIVIDESPEC) [s390*-*-*]: Set to -fno-use-divide-subroutine. * include/s390-signal.h: Include <ucontext.h> and <limits.h>. (HANDLE_FPE): Define. (SIGNAL_HANDLER): Change third argument to ucontext_t *. (struct old_s390_kernel_sigaction): Likewise for k_sa_handler. (HANDLE_DIVIDE_OVERFLOW): Define. From-SVN: r84683
2004-07-14mips.c (mips_output_move): When generating mips16 code, force loads of ↵Richard Sandiford3-19/+25
negative constants to be split. * config/mips/mips.c (mips_output_move): When generating mips16 code, force loads of negative constants to be split. * config/mips/mips.md (*movhi_mips16, *movqi_mips16): Likewise. Generalize SImode li/neg splitter to cope with other modes. From-SVN: r84680
2004-07-14expmed.c: Remove more references to QUEUED in the comments.Paolo Bonzini3-9/+6
2004-07-14 Paolo Bonzini <bonzini@gnu.org> * expmed.c: Remove more references to QUEUED in the comments. * expr.c: Likewise. From-SVN: r84678
2004-07-14revert: mips.c (mips_pass_by_reference): Handle mode sizes correctly.Richard Sandiford2-5/+8
Revert: 2004-07-13 Richard Henderson <rth@redhat.com> * config/mips/mips.c (mips_pass_by_reference): Handle mode sizes correctly. From-SVN: r84677