Commit ddfd0d91 by Paul Brook Committed by Paul Brook

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
parent 4720d5ca
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> 2006-01-18 Paolo Carlini <pcarlini@suse.de>
* include/bits/allocator.h: Include <bits/cpp_type_traits.h>. * include/bits/allocator.h: Include <bits/cpp_type_traits.h>.
......
// -*- C++ -*- The GNU C++ exception personality routine. // -*- 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. // This file is part of GCC.
// //
...@@ -386,7 +386,7 @@ PERSONALITY_FUNCTION (int version, ...@@ -386,7 +386,7 @@ PERSONALITY_FUNCTION (int version,
break; break;
default: default:
abort(); std::abort();
} }
actions |= state & _US_FORCE_UNWIND; actions |= state & _US_FORCE_UNWIND;
......
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