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
This commit is contained in:
Paul Brook 2006-01-18 16:31:00 +00:00 committed by Paul Brook
parent 4720d5ca9c
commit ddfd0d910b
2 changed files with 6 additions and 2 deletions

View File

@ -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>.

View File

@ -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;