diff options
author | Paul Brook <paul@codesourcery.com> | 2006-01-18 16:31:00 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2006-01-18 16:31:00 +0000 |
commit | ddfd0d910b2b3e8acaeb490d901b303326e83256 (patch) | |
tree | ca2773710532dd4ca3de5e110265e12d7c262e68 /libstdc++-v3 | |
parent | 4720d5ca9cd07db386c295e27d45da736243a15f (diff) | |
download | gcc-ddfd0d910b2b3e8acaeb490d901b303326e83256.tar.gz |
eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
2006-01-18 Paul Brook <paul@codesourcery.com>
* libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
From-SVN: r109896
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/libsupc++/eh_personality.cc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b6c70a48954..09bb51d7ac2 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2006-01-18 Paul Brook <paul@codesourcery.com> + + * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. + 2006-01-18 Paolo Carlini <pcarlini@suse.de> * include/bits/allocator.h: Include <bits/cpp_type_traits.h>. diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index 917a397569c..99efe278af0 100644 --- a/libstdc++-v3/libsupc++/eh_personality.cc +++ b/libstdc++-v3/libsupc++/eh_personality.cc @@ -1,5 +1,5 @@ // -*- C++ -*- The GNU C++ exception personality routine. -// Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +// Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc. // // This file is part of GCC. // @@ -386,7 +386,7 @@ PERSONALITY_FUNCTION (int version, break; default: - abort(); + std::abort(); } actions |= state & _US_FORCE_UNWIND; |