From: Andrew Cagney Date: Tue, 20 Mar 2001 17:48:17 +0000 (+0000) Subject: Replace abort() with internal_error(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df087c6239615ba608ed660d3f85de505e8d441e;p=binutils-gdb.git Replace abort() with internal_error(). --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 90085db490d..384fdfc84d2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-03-20 Andrew Cagney + + * config/powerpc/tm-linux.h (SOFTWARE_SINGLE_STEP): Replace abort + with internal_error. + 2001-03-20 Jim Blandy * linespec.c (find_methods): Just call CHECK_TYPEDEF on t, rather diff --git a/gdb/config/powerpc/tm-linux.h b/gdb/config/powerpc/tm-linux.h index 182c245fb07..20a062b21b2 100644 --- a/gdb/config/powerpc/tm-linux.h +++ b/gdb/config/powerpc/tm-linux.h @@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* We can single step on linux */ #undef SOFTWARE_SINGLE_STEP -#define SOFTWARE_SINGLE_STEP(p,q) abort() /* Will never execute! */ +#define SOFTWARE_SINGLE_STEP(p,q) internal_error (__FILE__, __LINE__, "Will never execute!") #undef SOFTWARE_SINGLE_STEP_P #define SOFTWARE_SINGLE_STEP_P 0