1. 16 Feb, 2001 6 commits
    • acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross compilation. · 729338bb
      
      2001-02-15  Anthony Green  <green@redhat.com>
      
              * acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross
              compilation.
              * aclocal.m4: Regenerate.
              * configure: Regenerate.
      
      From-SVN: r39735
      Anthony Green committed
    • TreeSet.java (clone): Made subclass safe, use super.clone(), not new. · 07add946
      	* java/util/TreeSet.java (clone): Made subclass safe, use
      	super.clone(), not new.
      	* java/util/TreeMap.java (clone): Likewise.
      
      From-SVN: r39734
      Bryce McKinlay committed
    • acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): Include ieeefp.h for fpclass on UnixWare{2,7}. · 01a49191
      
      2001-02-15  Rodney Brown  <RodneyBrown@mynd.com>
      
              * acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1):
              Include ieeefp.h for fpclass on UnixWare{2,7}.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
              * mkcheck.in (size_command): Do without GNU-grep when using
              size from binutils.
      
      From-SVN: r39733
      Rodney Brown committed
    • Remove old ABI support from libsupc++. · 94083e5d
      	* libsupc++/cxxabi.h: Remove conditionally compiled code.
      	* libsupc++/exception_support.cc: Likewise.
      	* libsupc++/pure.cc: Likewise.
      	* libsupc++/tinfo.cc: Likewise.
      	* libsupc++/tinfo.h: Likewise.
      	* libsupc++/tinfo2.cc: Likewise.
      	* libsupc++/typeinfo: Likewise.
      	* libsupc++/vec.cc: Likewise.
      
      From-SVN: r39732
      Mark Mitchell committed
    • * typeck2.c (build_m_component_ref): Robustify. · f1a3f197
      From-SVN: r39731
      Mark Mitchell committed
    • Add support for -fno-exceptions. · e2c09482
      
      2001-02-15  Benjamin Kosnik  <bkoz@redhat.com>
      
      	Add support for -fno-exceptions.
      	* include/bits/exception_support.h: Remove.
      	* include/bits/basic_string.h: Remove exception_support.
      	(string::_M_check): Replace __OUTOFRANGE with __throw_out_of_range.
      	(string::at): Same.
      	(string::substr): Same.
      	* include/bits/basic_string.tcc (string::reserve): Replace
      	__LENGTHERROR with __throw_length_error.
      	(string::_S_create): Same.
      	(string::resize): Same.
      	(string::_M_replace): Same.
      	(string::replace): Same.
      	(string::copy): Replace __OUTOFRANGE with __throw_out_of_range.
      	(string::compare): Same.
      	* include/bits/stl_vector.h: Remove exception_support.
      	* src/Makefile.am (base_headers): Remove here.
      	* src/Makefile.in: Regenerate.
      
      	* include/bits/stl_range_errors.h: Remove.
      	* include/bits/stl_deque.h: Use __throw_range_error.
      	* include/bits/std_deque.h: Include functexcept.h.
      	* include/bits/std_vector.h: Same.
      	* src/Makefile.am (base_headers): Remove here.
      	* src/Makefile.in: Regenerate.
      	* include/ext/stl_bvector.h (class __BVECTOR): Use __throw_range_error.
      	* include/ext/bvector: Remove stl_range_errors.h
      
      	* include/bits/c++config (_GLIBCPP_USE_EXCEPTIONS): Remove.
      
      	* include/bits/functexcept.h: New file.
      	* src/functexcept.cc: New file. Definitions for function-based
      	exception routines.
      	* src/Makefile.am (sources): Add functexcept.cc.
      	* src/Makefile.in: Regenerate.
      
      	* include/bits/stl_config.h (__STL_USE_EXCEPTIONS): Wrap with
      	__EXCEPTIONS.
      
      	* include/bits/localefwd.h: Include functexcept.h.
      	* include/bits/std_iosfwd.h: Same.
      
      	* include/bits/basic_ios.h: Use __throw_ios_failure instead of
      	throw basic_ios::failure.
      	* include/bits/fstream.tcc (filebuf::_M_allocate_buffers):
      	Use __throw_exception_again.
      	(filebuf::_M_filebuf_init): Same.
      	* include/bits/streambuf.tcc (__copy_streambufs): Same.
      	* include/bits/ostream.tcc (ostream::operator<<): Same.
      	* include/bits/istream.tcc (istream::operator>>): Same.
      	* include/bits/basic_string.tcc (string::_M_mutate): Same.
      	(string::_S_construct): Same.
      	(string::_M_clone): Same.
      	* include/bits/locale_facets.tcc (use_facet(const locale&)): Use
      	__throw_bad_cast.
      	(num_put<_CharT, _OutIter>::do_put): Use __throw_exception_again.
      	* src/localename.cc (locale::_Imp::_Imp(const _Impl&, size_t): Use
      	__throw_exception_again.
      	(locale::_Imp::_Imp(string, size_t): Same.
      	(locale::_Imp::_M_replace_facet): Use __throw_runtime_error.
      	* src/locale.cc (locale::_M_coalesce): Use __throw_exception_again.
      	(locale::locale(const char*)): Use __throw_runtime_error.
      	(locale::classic): Use __throw_exception_again.
      	(locale::_S_normalize_category): Use __throw_runtime_error.
      
      	* src/stdexcept.cc: Remove cruft.
      
      	* libsupc++/exception_defines.h: New file.
      	* libsupc++/new_opnt.cc: Include exception_defines.h.
      	* libsupc++/vec.cc: Same.
      	(__cxa_vec_new2): Use __throw_exception_again.
      	(__cxa_vec_new3): Same.
      	(__cxa_vec_ctor): Same.
      	(__cxa_vec_delete3): Same.
      	(__cxa_vec_cctor): Same.
      	(__cxa_vec_delete2): Same.
      	(__cxa_vec_dtor): Same.
      	* libsupc++/exception_support.cc: Include exception_defines.h. Only
      	compile exception-handling bits if __EXCEPTIONS is defined.
      	Remove old ABI support.
      	* libsupc++/new_op.cc (new): Include exception_defines.h. Use
      	std::__throw_bad_alloc() instead of throw bad_alloc.
      	* libsupc++/Makefile.am: Add exception_defines.h.
      	* libsupc++/Makefile.in: Reformat.
      	* libsupc++/*: Format.
      
      From-SVN: r39730
      Benjamin Kosnik committed
  2. 15 Feb, 2001 19 commits
  3. 14 Feb, 2001 15 commits