Commit 9b4fc32c by Benjamin Kosnik Committed by Benjamin Kosnik

testsuite_abi.cc: Add CXXABI_1.3.2.

2007-05-08  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/util/testsuite_abi.cc: Add CXXABI_1.3.2.

	* libsupc++/cxxabi-internal.h (__foreign_exception::__pure): To
	__pure_virtual.

From-SVN: r124537
parent ddd9d940
2007-05-08 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/util/testsuite_abi.cc: Add CXXABI_1.3.2.
* libsupc++/cxxabi-internal.h (__foreign_exception::__pure): To
__pure_virtual.
2007-05-07 Jason Merrill <jason@redhat.com> 2007-05-07 Jason Merrill <jason@redhat.com>
* include/bits/ostream.tcc (operator<<(char*)): Add __s. * include/bits/ostream.tcc (operator<<(char*)): Add __s.
......
...@@ -543,7 +543,7 @@ namespace __cxxabiv1 ...@@ -543,7 +543,7 @@ namespace __cxxabiv1
class __foreign_exception class __foreign_exception
{ {
virtual ~__foreign_exception() throw(); virtual ~__foreign_exception() throw();
virtual void __pure() = 0; // prevent catch by value virtual void __pure_virtual() = 0; // prevent catch by value
}; };
} // namespace __cxxabiv1 } // namespace __cxxabiv1
......
...@@ -193,6 +193,7 @@ check_version(symbol& test, bool added) ...@@ -193,6 +193,7 @@ check_version(symbol& test, bool added)
known_versions.push_back("GLIBCXX_LDBL_3.4.7"); known_versions.push_back("GLIBCXX_LDBL_3.4.7");
known_versions.push_back("CXXABI_1.3"); known_versions.push_back("CXXABI_1.3");
known_versions.push_back("CXXABI_1.3.1"); known_versions.push_back("CXXABI_1.3.1");
known_versions.push_back("CXXABI_1.3.2");
known_versions.push_back("CXXABI_LDBL_1.3"); known_versions.push_back("CXXABI_LDBL_1.3");
} }
compat_list::iterator begin = known_versions.begin(); compat_list::iterator begin = known_versions.begin();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment