forked from Imagelibrary/binutils-gdb
Replace abort with internal_error.
2010-04-08 H.J. Lu <hongjiu.lu@intel.com> * i387-tdep.c (i387_collect_xsave): Replace abort with internal_error.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* i387-tdep.c (i387_collect_xsave): Replace abort with
|
||||||
|
internal_error.
|
||||||
|
|
||||||
2010-04-08 Stan Shebs <stan@codesourcery.com>
|
2010-04-08 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
* breakpoint.c (default_collect_info): New function.
|
* breakpoint.c (default_collect_info): New function.
|
||||||
|
|||||||
@@ -1033,7 +1033,8 @@ i387_collect_xsave (const struct regcache *regcache, int regnum,
|
|||||||
switch (regclass)
|
switch (regclass)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
abort ();
|
internal_error (__FILE__, __LINE__,
|
||||||
|
_("invalid i387 regclass"));
|
||||||
|
|
||||||
case avxh:
|
case avxh:
|
||||||
/* This is an upper YMM register. */
|
/* This is an upper YMM register. */
|
||||||
@@ -1077,7 +1078,8 @@ i387_collect_xsave (const struct regcache *regcache, int regnum,
|
|||||||
switch (regclass)
|
switch (regclass)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
abort ();
|
internal_error (__FILE__, __LINE__,
|
||||||
|
_("invalid i387 regclass"));
|
||||||
|
|
||||||
case all:
|
case all:
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user