diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-18 16:31:00 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-18 16:31:00 +0000 |
commit | defc55a19236c8239d8ab040225c6bc4c358c2e9 (patch) | |
tree | ca2773710532dd4ca3de5e110265e12d7c262e68 /libstdc++-v3 | |
parent | 4779159e0f04f2362535b9d65e392bffab0c422e (diff) | |
download | gcc-defc55a19236c8239d8ab040225c6bc4c358c2e9.tar.gz |
2006-01-18 Paul Brook <paul@codesourcery.com>
* libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109896 138bc75d-0d04-0410-961f-82ee72b054a4
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; |