1. 24 Feb, 2005 4 commits
  2. 23 Feb, 2005 36 commits
    • tm.texi (LINK_LIBGCC_SPECIAL): Remove. · 57642751
      	* doc/tm.texi (LINK_LIBGCC_SPECIAL): Remove.
      	(LINK_LIBGCC_SPECIAL_1): Don't mention it.
      	* gcc.c: Don't check for LINK_LIBGCC_SPECIAL.
      	* system.h: Poison LINK_LIBGCC_SPECIAL.
      
      From-SVN: r95476
      Daniel Jacobowitz committed
    • Fix problem found by CFLAGS=-fmudflap build. · 27f0dff4
      * Makefile.in (full-stamp, test-stamp, $(AF)): Add $(CFLAGS) to link.
      
      From-SVN: r95475
      James E Wilson committed
    • re PR tree-optimization/20100 (LIM is pulling out a pure function even though… · c5625c0c
      re PR tree-optimization/20100 (LIM is pulling out a pure function even though there is something which can modify global memory)
      
      	PR tree-optimization/20100
      	* gcc.c-torture/execute/pr20100-1.c: New test.
      
      From-SVN: r95474
      Hans-Peter Nilsson committed
    • Fix out-of-bounds array access found by mudflap. · 79e4e6a6
      * gengtype.c (note_insn_name): Make 1 element larger.
      
      From-SVN: r95473
      James E Wilson committed
    • gfortran.h (gfc_component, [...]): Make 'name' a 'const char *'. · e9444bd5
      * gfortran.h (gfc_component, gfc_actual_arglist, gfc_user_op): Make
      'name' a 'const char *'.
      (gfc_symbol): Likewise, also for 'module'.
      (gfc_symtree): Make 'name' a 'const char *'.
      (gfc_intrinsic_sym): Likewise, also for 'lib_name'.
      (gfc_get_gsymbol, gfc_find_gsymbol): Add 'const' qualifier to
      'char *' argument.
      (gfc_intrinsic_symbol): Use 'gfc_get_string' instead of 'strcpy' to
      initialize 'SYM->module'.
      * check.c (gfc_check_minloc_maxloc, check_reduction): Check for NULL
      pointer instead of empty string.
      * dump-parse-tree.c (gfc_show_actual_arglist): Likewise.
      * interface.c (gfc_compare_types): Adapt check to account for possible
      NULL pointer.
      (compare_actual_formal): Check for NULL pointer instead of empty
      string.
      * intrinsic.c (gfc_current_intrinsic, gfc_current_intrinsic_arg):
      Add 'const' qualifier.
      (conv_name): Return a heap allocated string.
      (find_conv): Add 'const' qualifier to 'target'.
      (add_sym): Use 'gfc_get_string' instead of 'strcpy'.
      (make_generic): Check for NULL pointer instead of emptystring.
      (make_alias): Use 'gfc_get_string' instead of 'strcpy'.
      (add_conv): No need to strcpy result from 'conv_name'.
      (sort_actual): Check for NULL pointer instead of emptystring.
      * intrinsic.h (gfc_current_intrinsic, gfc_current_intrinsic_arg):
      Adapt prototype.
      * module.c (compare_true_names): Compare pointers instead of strings
      for 'module' member.
      (find_true_name): Initialize string fields with gfc_get_string.
      (mio_pool_string): New function.
      (mio_internal_string): Adapt comment.
      (mio_component_ref, mio_component, mio_actual_arg): Use
      'mio_pool_string' instead of 'mio_internal_string'.
      (mio_symbol_interface): Add 'const' qualifier to string arguments.
      Add level of indirection. Use 'mio_pool_string' instead of
      'mio_internal_string'.
      (load_needed, read_module): Use 'gfc_get_string' instead of 'strcpy'.
      (write_common, write_symbol): Use 'mio_pool_string' instead of
      'mio_internal_string'.
      (write_symbol0, write_symbol1): Likewise, also check for NULL pointer
      instead of empty string.
      (write_operator, write_generic): Pass correct type variable to
      'mio_symbol_interface'.
      (write_symtree): Use 'mio_pool_string' instead of
      'mio_internal_string'.
      * primary.c (match_keyword_arg): Adapt check to possible
      case of NULL pointer.  Use 'gfc_get_string' instead of 'strcpy'.
      * symbol.c (gfc_add_component, gfc_new_symtree, delete_symtree,
      gfc_get_uop, gfc_new_symbol): Use 'gfc_get_string' instead of
      'strcpy'.
      (ambiguous_symbol): Check for NULL pointer instead of empty string.
      (gfc_find_gsymbol, gfc_get_gsymbol): Add 'const' qualifier on string
      arguments.
      * trans-array.c (gfc_trans_auto_array_allocation): Check for NULL
      pointer instead of empty string.
      * trans-decl.c (gfc_sym_mangled_identifier,
      gfc_sym_mangled_function_id, gfc_finish_var_decl, gfc_get_symbol_decl,
      gfc_get_symbol_decl): Likewise.
      * trans-io.c (gfc_new_nml_name_expr): Add 'const' qualifier to
      argument.  Copy string instead of pointing to it.
      
      From-SVN: r95472
      Tobias Schlüter committed
    • gfortran.h (gfc_expr): Move 'operator'... · 58b03ab2
      * gfortran.h (gfc_expr): Move 'operator', 'op1', 'op2', and 'uop'
      fields into new struct 'op' inside the 'value' union.
      * arith.c (eval_intrinsic): Adapt all users.
      * dependency.c (gfc_check_dependency): Likewise.
      * dump-parse-tree.c (gfc_show_expr): Likewise.
      * expr.c (gfc_get_expr): Don't clear removed fields.
      (free_expr0, gfc_copy_expr, gfc_type_convert_binary,
      gfc_is_constant_expr, simplify_intrinsic_op, check_init_expr,
      check_intrinsic_op): Adapt to new field names.
      * interface.c (gfc_extend_expr): Likewise.  Also explicitly
      nullify 'esym' and 'isym' fields of new function call.
      * iresolve.c (gfc_resolve_dot_product, gfc_resolve_matmul):
      Adapt to renamed structure fields.
      * matchexp.c (build_node, match_level_1, match_expr): Likewise.
      * module.c (mio_expr): Likewise.
      * resolve.c (resolve_operator): Likewise.
      (gfc_find_forall_index): Likewise.  Only look through operands
      if dealing with EXPR_OP
      * trans-array.c (gfc_walk_op_expr): Adapt to renamed fields.
      * trans-expr.c (gfc_conv_unary_op, gfc_conv_power_op,
      gfc_conv_concat_op, gfc_conv_expr_op): Likewise.
      
      From-SVN: r95471
      Tobias Schlüter committed
    • gfortran.h (symbol_attribute): New 'untyped' field, fix comment formatting. · d1303acd
      fortran/
      * gfortran.h (symbol_attribute): New 'untyped' field, fix comment
      formatting.
      * symbol.c (gfc_set_default_type): Issue error only once, by setting
      and checking 'untyped' attribute.
      
      testsuite/
      * gfortran.dg/deftype_1.f90: New test.
      
      From-SVN: r95469
      Tobias Schlüter committed
    • gfortran.h (gfc_get_namespace): Add second argument to prototype. · 0366dfe9
      fortran/
      * gfortran.h (gfc_get_namespace): Add second argument to prototype.
      * intrinsic.c (gfc_intrinsic_init_1): Pass second argument to
      gfc_get_namespace.
      * module.c (mio_namespace_ref, load_needed): Likewise.
      * parse.c (parse_interface, parse_contained): Likewise.  Here the
      correct second argument matters.
      * symbol.c (gfc_get_namespace): Add parent_types argument, only copy
      parent's implicit types if this is set.
      (gfc_symbol_init_2): Pass second argument to gfc_get_namespace.
      * trans-common.c (build_common_decl): Likewise.
      
      testsuite/
      * gfortran.dg/implicit_3.f90: New test.
      
      From-SVN: r95463
      Tobias Schlüter committed
    • decl.c (grokvardecl): Don't exempt anonymous types from having linkage for variables that have... · 6b211746
      gcc/cp/ChangeLog:
      * decl.c (grokvardecl): Don't exempt anonymous types from having
      linkage for variables that have linkage other than "C".
      gcc/testsuite/ChangeLog:
      * g++.dg/lookup/anon2.C: Don't let access checks make it look like
      the test passes.
      * g++.dg/other/anon3.C: Accept a warning.
      
      From-SVN: r95462
      Alexandre Oliva committed
    • re PR target/20018 ([ia64] unable to find a register to spill in class`PR_REG') · 61961eff
      
      	PR target/20018
      	PR rtl-optimization/20097
      	* simplify-rtx.c (simplify_relational_operation_1): Avoid creating
      	BImode SUBREGs of SImode registers which confuse the ia64 backend.
      
      From-SVN: r95461
      Roger Sayle committed
    • t-aix43 (SHLIB_INSTALL): Create directory for shared library. · 1628a835
      	* t-aix43 (SHLIB_INSTALL): Create directory for shared library.
      	* t-aix52 (SHLIB_INSTALL): Same.
      
      From-SVN: r95460
      David Edelsohn committed
    • re PR libgcj/16923 (-D* Options passed to JNI_CreateJavaVM are ignored) · bc71e4a2
      2005-02-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
      
      	PR libgcj/16923
      	* gcj.texi (Invocation): Add descriptions of JvVMInitArgs and
      	JvVMOption.
      
      2005-02-23  Thomas Fitzsimmons  <fitzsim@redhat.com>
      
      	PR libgcj/16923
      	* jni.cc (JNI_CreateJavaVM): Check JNI version.  Cast args to
      	JvVMInitArgs.  Pass args to _Jv_CreateJavaVM and check return
      	value.  Move argument parsing code to prims.cc.
      	* prims.cc (no_properties): Remove.
      	(_Jv_Compiler_Properties): Initialize to NULL.
      	(_Jv_Properties_Count): Initialize to 0.
      	(parse_verbose_args): New function.
      	(parse_init_args): New function.
      	(_Jv_CreateJavaVM): Call parse_init_args.
      	(_Jv_RunMain): Check return value of _Jv_CreateJavaVM.
      	* gcj/cni.h (JvVMOption): New struct.
      	(JvVMInitArgs): Likewise.
      	(JvCreateJavaVM): Declare vm_args as JvVMInitArgs* rather than
      	void*.
      	* libjava/gcj/javaprims.h (_Jv_VMOption): New struct.
      	(_Jv_VMInitArgs): Likewise.
      	* include/java-props.h (_Jv_Properties_Count): Declare.
      	* java/lang/natRuntime.cc (insertSystemProperties): Use
      	_Jv_Properties_Count in for loop exit condition.
      	* testsuite/libjava.jni/jni.exp
      	(gcj_invocation_compile_c_to_binary): New procedure.
      	(gcj_invocation_test_one): Likewise.
      	(gcj_jni_run): Run JNI invocation API tests.
      	* testsuite/libjava.jni/invocation/PR16923.c,
      	testsuite/libjava.jni/invocation/PR16923.java,
      	testsuite/libjava.jni/invocation/PR16923.out: New test.
      
      From-SVN: r95459
      Thomas Fitzsimmons committed
    • type_traits: Implement is_convertible. · c150a271
      2005-02-23  Paolo Carlini  <pcarlini@suse.de>
      
      	* include/tr1/type_traits: Implement is_convertible.
      	* testsuite/tr1/4_metaprogramming/relationships_between_types/
      	is_convertible/is_convertible.cc: New.
      	* testsuite/tr1/4_metaprogramming/relationships_between_types/
      	is_convertible/typedefs.cc: Likewise.
      	* testsuite/testsuite_tr1.h: Add class DerivedType.
      
      	* include/tr1/type_traits (is_function): Don't mistake references
      	to function types for function types.
      	* testsuite/tr1/4_metaprogramming/primary_type_categories/
      	is_function/is_function.cc: Add testcase.
      
      From-SVN: r95458
      Paolo Carlini committed
    • genpreds.c: Update copyright. · f439764f
      gcc/
      	* genpreds.c: Update copyright.
      
      cp/
      	* cp-objcp-common.h, error.c: Update copyright.
      
      fortran/
      	* intrinsic.h, st.c: Update copyright.
      
      treelang/
      	* parse.y: Update copyright.
      
      From-SVN: r95457
      Kazu Hirata committed
    • * gcc.dg/pr20017.c: Fix a comment typo. · ea2d006d
      From-SVN: r95456
      Kazu Hirata committed
    • re PR libffi/20104 (gij fails on ppc and not on x86) · 962eea0a
      2005-02-22  Andrew Haley  <aph@redhat.com>
      
      	PR libffi/20104
              * src/powerpc/ffi.c (ffi_prep_cif_machdep): Bump alignment to
              odd-numbered register pairs for 64-bit integer types.
      
      From-SVN: r95455
      Andrew Haley committed
    • re PR libffi/20104 (gij fails on ppc and not on x86) · 1b05e8bf
      2005-02-23  Andreas Tobler  <a.tobler@schweiz.ch>
      
      	PR libffi/20104
      	* testsuite/libffi.call/return_ll1.c: New test case.
      
      From-SVN: r95454
      Andreas Tobler committed
    • re PR target/20159 (sol2-ci.asm not correctly assembled) · 3f9f087b
      	PR target/20159
      	* config/sparc/t-elf (startup files): Assemble with CPP.
      
      From-SVN: r95450
      Michael Beach committed
    • list_read_4.f90: Change to f90 comments. · b26b1000
      2005-02-23  Bud Davis  <bdavis@gfortran.org>
      
              * gfortran.dg/list_read_4.f90: Change to f90 comments.
      
      From-SVN: r95449
      Bud Davis committed
    • Allow darwin targeted ports to build tk, itcl and libgui. · d2f3024f
      From-SVN: r95448
      Paul Schlie committed
    • genpreds.c (mark_mode_tests): Handle non-VOIDmode match_operands. · bb56fc39
      2005-02-23  Paolo Bonzini  <bonzini@gnu.org>
      
      	* genpreds.c (mark_mode_tests): Handle non-VOIDmode match_operands.
      	(write_predicate_expr): Likewise.
      
      From-SVN: r95447
      Paolo Bonzini committed
    • re PR ada/19902 (ACATS cxa3004 cxb3006 fail at compile time "ambiguous expression") · 40205a36
      	PR ada/19902
      	* ada/acats/tests/cxa/cxa3004.a: Remove.
      	* ada/acats/tests/cxb/cxb30061.am: Likewise.
      
      From-SVN: r95446
      Eric Botcazou committed
    • Makefile.am: Added new file gnu/java/nio/ChannelReader.java. · 1144f8d5
      2005-02-23  Michael Koch  <konqueror@gmx.de>
      
      	* Makefile.am: Added new file gnu/java/nio/ChannelReader.java.
      	* Makefile.in: Regenerated.
      
      From-SVN: r95445
      Michael Koch committed
    • ChannelReader: Fixed comments. · c34fdf0b
      2005-02-23  Robert Schuster  <thebohemian@gmx.net>
      
      	* gnu/java/nio/ChannelReader: Fixed comments.
      
      2005-02-23  Robert Schuster  <thebohemian@gmx.net>
      
      	* java/nio/channels/Channels: Added FIXMEs about
      	stub method implementation.
      	(newReader): Implemented.
      	* gnu/java/nio/ChannelReader: New class.
      
      From-SVN: r95444
      Robert Schuster committed
    • SimpleDateFormat.java: Removed unused import. · 16b31d8f
      2005-02-23  Michael Koch  <konqueror@gmx.de>
      
      	* java/text/SimpleDateFormat.java:
      	Removed unused import.
      
      From-SVN: r95443
      Michael Koch committed
    • re PR c++/20073 (ICE initializing const array) · af477510
      	PR c++/20073
      	* decl.c (start_decl_1): Don't clear TREE_READONLY.
      	(cp_finish_decl): Likewise.
      	(complete_vars): Call cp_apply_type_quals_to_decl.
      	* typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
      	cases where that's not valid.
      
      From-SVN: r95442
      Mark Mitchell committed
    • re PR c++/20073 (ICE initializing const array) · 67935995
      	PR c++/20073
      	* decl.c (start_decl_1): Don't clear TREE_READONLY.
      	(cp_finish_decl): Likewise.
      	(complete_vars): Call cp_apply_type_quals_to_decl.
      	* typeck.c (cp_apply_type_quals): Avoid setting TREE_READONLY in
      	cases where that's not valid.
      
      	PR c++/20073
      	* g++.dg/init/const1.C: New test.
      
      From-SVN: r95441
      Mark Mitchell committed
    • check_performance: Tweaks. · bba6afa6
      
      2005-02-22  Benjamin Kosnik  <bkoz@redhat.com>
      
      	* scripts/check_performance: Tweaks.
      
      	* testsuite/27_io/basic_ostream/inserters_other/wchar_t/2.cc: Name
      	output file with extension that clean rules can find.
      
      From-SVN: r95440
      Benjamin Kosnik committed
    • re PR c++/19991 (Enum not accepted in array-size) · 744b12b6
      	PR c++/19991
      	* init.c (integral_constant_value): Iterate if the value of a decl
      	is itself a constant.
      
      	PR c++/20152
      	* parser.c (cp_parser_class_head): Check for redefintions here.
      	* semantics.c (begin_class_definition): Not here.
      
      	PR c++/20153
      	* decl2.c (build_anon_union_vars): Add type parameter.
      	(finish_anon_union): Pass it.
      
      	PR c++/20148
      	* error.c (dump_expr): Do not print the body of a BIND_EXPR.
      	Handle STATEMENT_LIST.
      
      	PR c++/19991
      	* g++.dg/parse/constant7.C: New test.
      
      	PR c++/20152
      	* g++.dg/parse/error27.C: New test.
      	* g++.dg/template/qualttp15.C: Adjust error markers.
      	* g++.old-deja/g++.other/struct1.C: Likewise.
      
      	PR c++/20153
      	* g++.dg/template/error17.C: New test.
      
      	PR c++/20148
      	* g++.dg/parser/error26.C: New test.
      
      From-SVN: r95438
      Mark Mitchell committed
    • re PR tree-optimization/20100 (LIM is pulling out a pure function even though… · 90c1d75a
      re PR tree-optimization/20100 (LIM is pulling out a pure function even though there is something which can modify global memory)
      
      
      	PR tree-optimization/20100
      	PR tree-optimization/20115
      	* tree-optimize.c (init_tree_optimization_passes): Remove
      	pass_maybe_create_global_var.
      	* tree-pass.h (pass_maybe_create_global_var): Remove.
      	* tree-ssa-alias.c (aliases_computed_p): Declare.
      	(struct alias_info): Add field NUM_PURE_CONST_CALLS_FOUND.
      	(count_calls_and_maybe_create_global_var): Remove.
      	(pass_maybe_create_global_var): Remove.
      	(init_alias_info): Do not declare aliases_computed_p.
      	(maybe_create_global_var): If the function contains no
      	call-clobbered variables and a mix of pure/const and regular
      	function calls, create .GLOBAL_VAR.
      	Mark all call-clobbered variables for renaming.
      	(merge_pointed_to_info): Update comment.
      	(add_pointed_to_var): Likewise.
      	(is_escape_site): Likewise.
      	Accept struct alias_info * instead of size_t *.
      	Update all users.
      	Update AI->NUM_CALLS_FOUND and AI->NUM_PURE_CONST_CALLS_FOUND
      	as necessary.
      	* tree-ssa-operands.c (get_call_expr_operands): If
      	ALIASES_COMPUTED_P is false, do not add call-clobbering
      	operands.
      	* tree-ssa.c (init_tree_ssa): Set ALIASES_COMPUTED_P to false.
      	(delete_tree_ssa): Likewise.
      
      testsuite/ChangeLog
      
      	PR tree-optimization/20100
      	PR tree-optimization/20115
      	* gcc.dg/pr20115.c: New test.
      	* gcc.dg/pr20115-1.c: New test.
      	* gcc.dg/pr20100.c: New test.
      	* gcc.dg/tree-ssa/20040517-1.c: Expect virtual operands for
      	call-clobbered variables after alias1.
      
      From-SVN: r95437
      Diego Novillo committed
    • [multiple changes] · 397763d2
      2004-02-22  Paul Thomas <paulthomas2@wannado.fr>
                  Bud Davis  <bdavis@gfortran.org>
      
              * io/list_read.c (read_real): Handle separators properly
              in list directed read.
      
      2005-02-22  Bud Davis  <bdavis@gfortran.org>
      
              * gfortran.dg/list_read_4.f90: new test.
      
      From-SVN: r95436
      Bud Davis committed
    • Fix FreeBSD __LDBL_MAX__ -pedantic -save-temps bug. · e59ba1bc
      * toplev.c (backend_init): Don't call init_adjust_machine_modes here.
      (do_compile): Do call it here.
      
      From-SVN: r95432
      James E Wilson committed
    • re PR rtl-optimization/20017 (internal compiler error: in rtl_verify_flow_info, at cfgrtl.c:2212) · 78d5a34b
      gcc/
      	PR rtl-optimization/20017.
      	* passes.c (rest_of_handle_combine, rest_of_handle_cse,
      	rest_of_handle_cse2, rest_of_handle_gcse): Call
      	delete_dead_jumptables immediately before calling cleanup_cfg.
      
      testsuite/
      	PR rtl-optimization/20017.
      	* gcc.dg/pr20017.c: New.
      
      From-SVN: r95431
      Kazu Hirata committed
    • re PR tree-optimization/19952 (ICE: tree check: expected class 'declaration',… · 263fb23d
      re PR tree-optimization/19952 (ICE: tree check: expected class 'declaration', have 'statement' (label_expr) in tree_verify_flow_info, at tree-cfg.c:3709)
      
             PR 19952
             * tree-if-conv.c (process_phi_nodes): Use bsi_after_labels and skip
             all labels
             * g++.dg/tree-ssa/pr19952.C: New test.
      
      From-SVN: r95430
      Devang Patel committed
    • Add myself as write-after-approval · a47e0c22
      From-SVN: r95429
      Doug Gregor committed
    • re PR awt/20029 (Robot needs XTest) · 3f8dfdd4
      2005-02-22  Thomas Fitzsimmons  <fitzsim@redhat.com>
      
      	PR libgcj/20029:
      	* Makefile.am (lib_gnu_java_awt_peer_gtk_la_CFLAGS): Add X_CFLAGS.
      	(lib_gnu_java_awt_peer_gtk_la_LDFLAGS): Add X_LIBS and -lXtst.
      	* Makefile.in: Regenerate.
      	* configure.ac: Check for libXtst.
      	* configure: Regenerate.
      
      From-SVN: r95428
      Thomas Fitzsimmons committed