From: Paul Brook Date: Wed, 18 Jan 2006 16:31:00 +0000 (+0000) Subject: eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. X-Git-Tag: releases/gcc-4.2.0~4774 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddfd0d910b2b3e8acaeb490d901b303326e83256;p=thirdparty%2Fgcc.git eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. 2006-01-18 Paul Brook * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. From-SVN: r109896 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b6c70a489546..09bb51d7ac24 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2006-01-18 Paul Brook + + * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Use std::abort. + 2006-01-18 Paolo Carlini * include/bits/allocator.h: Include . diff --git a/libstdc++-v3/libsupc++/eh_personality.cc b/libstdc++-v3/libsupc++/eh_personality.cc index 917a397569cd..99efe278af0e 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;