1. 16 Apr, 2002 6 commits
    • decl.c (register_dtor_fn): Pass the address of dso_handle, not dso_handle itself, to __cxa_atexit. · 0f268005
      	* decl.c (register_dtor_fn): Pass the address of dso_handle, not
      	dso_handle itself, to __cxa_atexit.
      
      From-SVN: r52354
      Mark Mitchell committed
    • abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set call_really_used_regs too. · 861829ed
              * config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
              call_really_used_regs too.
      
      From-SVN: r52352
      Richard Henderson committed
    • [multiple changes] · f1e888ae
      2002-04-16  Paolo Carlini <pcarlini@unitus.it>
              * testsuite/24_iterators/rel_ops.cc: New test.
      
      2002-04-16  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
      
              * include/bits/type_traits.h (__normal_iterator): Declare in
              __gnu_cxx.  Adjust use at global namespace.
              * include/bits/stl_iterator.h (__normal_iterator): Move
              definition
              into __gnu_cxx::. Add more operator overloads.  Tidy existing
              ones.
              * include/bits/basic_string.h (basic_string): Adjust use of
              __normal_iterator.
              * include/bits/stl_vector.h (_Alloc>): Likewise.
              * src/concept-inst.cc (__gnu_cxx): __normal_iterator<> is now
              here.
              * src/string-inst.cc (operator==): Instantiate in __gnu_cxx.
      
      From-SVN: r52348
      Gabriel Dos Reis committed
    • configure.in: Allow building in $srcdir. · 902c431d
      * configure.in: Allow building in $srcdir.
      * configure: Regenerated.
      
      From-SVN: r52347
      DJ Delorie committed
    • re PR libstdc++/4164 (33 Memory Leak when using iostream) · d3a193e3
      
      2002-04-15  Benjamin Kosnik  <bkoz@redhat.com>
      
      	PR libstdc++/4164
      	Valgrind fixes.
      	* config/io/basic_file_stdio.cc (__basic_file::~__basic_file):
      	Call close.
      	(__basic_file::close): Call fflush. Correct return if fclose ok.
      	(__basic_file::is_open): Make const.
      	Change __c_file_type to __c_file.
      	* config/io/basic_file_stdio.h: Change __c_file_type to __c_file.
      	(__basic_file::is_open): Make const.
      	* config/io/c_io_stdio.h: Change __c_file_type to __c_file.
      	* include/std/std_fstream.h (filebuf::_M_allocate_file): Remove.
      	(filebuf::_M_unbuf): Add.
      	(filebuf::_M_file): Change to non-pointer.
      	(filebuf::_M_allocate_pback_buffer): Remove.
      	* include/bits/fstream.tcc (filebuf::_M_allocate_file): Remove.
      	(filebuf::_M_allocate_internal_buffer): Use _M_unbuf.
      	Change initialization list for _M_file change.
      	(filebuf::_M_allocate_pback_buffer): Remove.
      	Change _M_file usage to reflect non-pointer data member.
      
      	* config/locale/generic/c_locale.cc
      	(locale::facet::_S_create_c_locale): Add parameter.
      	* config/locale/generic/collate_members.cc: Change
      	_M_compare_helper to _M_compare.
      	Change _M_transform_helper to _M_transform.
      	* config/locale/generic/monetary_members.cc: Changeup data types.
      	Add dtors.
      	* config/locale/generic/numeric_members.cc: Add dtors.
      	* config/locale/generic/time_members.cc: Add dtors.
      	* config/locale/gnu/c_locale.cc: Add parameter.
      	* config/locale/gnu/collate_members.cc:Change
      	_M_compare_helper to _M_compare.
      	Change _M_transform_helper to _M_transform.
      	* config/locale/gnu/ctype_members.cc: Better error checking.
      	* config/os/gnu-linux/bits/ctype_noninline.h: Better error checking.
      	* config/locale/gnu/messages_members.cc: Tweak comment.
      	* config/locale/gnu/monetary_members.cc: Change data types.
      	Add dtors.
      	* config/locale/gnu/numeric_members.cc: Add dtors, better error
      	checking.
      	* config/locale/gnu/time_members.cc: Same.
      	* config/locale/ieee_1003.1-2001/c_locale.cc
      	(locale::facet::_S_create_c_locale): Add parameter.
      	* config/locale/ieee_1003.1-2001/c_locale.h: Correct typedef.
      	* config/locale/ieee_1003.1-2001/codecvt_specializations.h: Remove
      	bogus ctor.
      
      	* include/bits/locale_facets.h (moneypunct): Use string literals.
      	Don't define dtor.
      	(numpunct): Same.
      	(__timepunct): Same.
      	(locale::_Impl::_M_facets): Change from vector to array.
      	(locale::_Impl::_M_names): Change from array of strings to array
      	of string literals.
      	(locale::facet::_S_create_c_locale): Add parameter.
      	(locale::locale::_S_num_facets): Move to...
      	(locale::_Impl::_M_facets_size): Here.
      	* include/bits/locale_facets.tcc: Fixups for _M_facets, _M_name
      	changes.
      	* include/bits/localefwd.h: (locale::id::_M_id): Add member function.
      	(locale::_Impl::_Impl(facet**, size_t, bool)): Add.
      	(locale::_Impl::_Impl(string, size_t)): Change to
      	(locale::_Impl::_Impl(const char*, size_t)): This.
      
      	* include/bits/streambuf.tcc (streambuf::_S_pback_size): Define.
      	* include/std/std_streambuf.h (streambuf::_M_pback_size): Change to
      	(streambuf::_S_pback_size): This.
      
      	* src/globals.cc: Add pre-allocations for "C" facets.
      	* src/locale-inst.cc: Remove vector instantiations.
      	* src/locale.cc: Remove vector include. Fixups for _M_names,
      	_M_facets changes.
      	* src/localename.cc: Same.
      
      	* include/bits/stl_vector.h: Fix odd formatting.
      
      	* include/bits/basic_string.tcc: Tweak comment.
      
      	* libsupc++/new: Make sure parameters are uglified.
      	* libsupc++/typeinfo: Same.
      
      	* testsuite/22_locale/num_get_members_char.cc: Fixup.
      	* testsuite/22_locale/num_get_members_wchar_t.cc: Same.
      	* testsuite/27_io/filebuf_members.cc: Same.
      
      From-SVN: r52345
      Benjamin Kosnik committed
  2. 15 Apr, 2002 15 commits
  3. 14 Apr, 2002 11 commits
    • diagnostic.h (output_buffer_state): Redefine. · bd6bec6b
      	* diagnostic.h (output_buffer_state): Redefine.
      	(output_format_decoder): New macro.
      	(output_prefixing_rule): Likewise.
      	(output_line_cutoff): Likewise.
      	(diagnostic_format_decoder): Adjust.
      	(diagnostic_prefixing_rule): Likewise.
      	(diagnostic_line_cutoff): Likewise.
      	(diagnostic_state): Likewise.
      	(diagnostic_kind_count): Likewise.
      	(diagnostic_buffer): Now a macro.
      
      	* diagnostic.c (diagnostic_buffer): Remove definition.
      	(output_is_line_wrapping): Adjust.
      	(set_real_maximum_length): Likewise.
      	(output_set_maximum_length): Likewise.
      	(init_output_buffer): Likewise.
      	(lhd_print_error_function): Likewise.
      	(output_do_verbatim): Likewise.
      
      cp/
      	* error.c (cxx_print_error_function): Adjust call to macros.
      
      From-SVN: r52307
      Gabriel Dos Reis committed
    • re PR libgcj/6302 (http URLConnection does not support HTTP/1.1 (and chunked transfer encoding)) · f20c0d98
              * libjava.mauve/xfails: Expect failures for PR libgcj/6302 and
              libgcj/6298.
      
      From-SVN: r52305
      Mark Wielaard committed
    • class.c (layout_virtual_bases): Do all dsize computation on trees. · 0f490a2b
      	* class.c (layout_virtual_bases): Do all dsize computation on trees.
      
      	* g++.dg/other/big-struct.C: New test.
      
      From-SVN: r52304
      Jakub Jelinek committed
    • cpperror.c (print_location): Don't print include chain if line == 0. · ebef4e8c
      	* cpperror.c (print_location): Don't print include chain
      	if line == 0.
      	(cpp_begin_message): Update to use DL_ macros.
      	(cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
      	cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
      	cpp_notice, cpp_notice_from_errno): Remove.
      	(cpp_error, cpp_error_with_line): Update to take a diagnostic
      	level.
      	(cpp_errno): New.
      	* cppexp.c (CPP_ICE): Remove.
      	(SYNTAX_ERROR, SYNTAX_ERROR2, parse_number, parse_defined,
      	lex, integer_overflow, _cpp_parse_expr): Update.
      	* cppfiles.c (read_include_file, find_include_file,
      	handle_missing_header, _cpp_read_file, remap_filename): Update.
      	* cpphash.h (enum error_type): Remove.
      	(_cpp_begin_message): Update.
      	* cppinit.c (append_include_chain, remove_dup_dirs, output_deps,
      	cpp_handle_option, cpp_post_options): Update.
      	* cpplex.c (trigraph_p, skip_escaped_newlines, skip_block_comment,
      	skip_whitespace, parse_identifier, parse_slow, parse_string,
      	_cpp_lex_direct, cpp_spell_token, maybe_read_ucs, cpp_parse_escape,
      	cpp_interpret_charconst): Update.
      	* cpplib.c (check_eol, directive_diagnostics, _cpp_handle_directive,
      	lex_macro_node, do_undef, glue_header_name, parse_include,
      	do_include_common, read_flag, do_line, do_linemarker, do_ident,
      	cpp_register_pragma, do_pragma_once, do_pragma_system_header,
      	do_pragma_poison, do_pragma_dependency, _cpp_do__Pragma, do_else,
      	do_elif, do_endif, parse_answer, parse_assertion, do_assert,
      	_cpp_pop_buffer, do_diagnostic): Update.
      	* cpplib.h (DL_WARNING, DL_WARNING_SYSHDR, DL_PEDWARN, DL_ERROR,
      	DL_FATAL, DL_ICE, DL_EXTRACT, DL_WARNING_P): New.
      	(cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
      	cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
      	cpp_notice, cpp_notice_from_errno): Remove.
      	(cpp_error, cpp_error_with_line): Update to take a diagnostic
      	level.
      	(cpp_errno): New.
      	* cppmacro.c (builtin_macro, stringify_arg, paste_all_tokens,
      	collect_args, enter_macro_context, save_parameter, parse_params,
      	_cpp_create_definition, check_trad_stringification,
      	cpp_macro_definition): Update.
      	* cppmain.c (cpp_preprocess_file): Update.
      	* fix-header.c (read_scan_file): Update.
      
      From-SVN: r52302
      Neil Booth committed
    • re PR libgcj/6293 (PipedInputStream.close() does not notify writer (Mauve test)) · 5a230810
      	* libjava.mauve/xfails: Expect failures for PR libgcj/6293,
      	libgcj/6295, libgcj/6296 and libgcj/6297.
      
      From-SVN: r52297
      Mark Wielaard committed
    • * config/arm/linux-elf.h (CPLUSPLUS_CPP_SPEC): Define. · 10fdbed6
      From-SVN: r52296
      Jeroen Dobbelaere committed
    • f77-edit-i-in.f: Use internal buffer in place of scratch file. · 4b27e132
      2002-04-12  David Billinghurst <David.Billinghurst@riotinto.com>
      
      	* g77.dg/f77-edit-i-in.f: Use internal buffer in place
      	of scratch file.
      
      From-SVN: r52294
      David Billinghurst committed
    • typeck.c (get_member_function_from_ptrfunc): Don't do gratuitious division and… · 85b7def6
      typeck.c (get_member_function_from_ptrfunc): Don't do gratuitious division and multiplication on ptrmemfunc_vbit_in_delta...
      
              * typeck.c (get_member_function_from_ptrfunc): Don't do
              gratuitious division and multiplication on
              ptrmemfunc_vbit_in_delta targets.
      
      From-SVN: r52293
      Jason Merrill committed
    • re PR c/6277 (Failure of test gcc.dg/i386-387-1.c on cygwin) · cf56e373
      2002-04-14  David Billinghurst <David.Billinghurst@riotinto.com>
      
      	PR c/6277
      	* gcc.dg/i386-387-1.c:  Allow optional leading underscore
      	in scan-assembler function name
      
      From-SVN: r52292
      David Billinghurst committed
    • Daily bump. · 8bc87916
      From-SVN: r52290
      GCC Administrator committed
  4. 13 Apr, 2002 8 commits