* alpha-tdep.c (alpha_extract_return_value): Use internal_error.

(alpha_store_return_value): Likewise.
This commit is contained in:
Richard Henderson 2003-06-02 20:46:41 +00:00
parent f15398ef83
commit 67dfac5232
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2003-06-02 Richard Henderson <rth@redhat.com>
* alpha-tdep.c (alpha_extract_return_value): Use internal_error.
(alpha_store_return_value): Likewise.
2003-06-02 David Carlton <carlton@math.stanford.edu>
* block.c (contained_in): Add 'const' to arguments.

View File

@ -438,7 +438,7 @@ alpha_extract_return_value (struct type *valtype, struct regcache *regcache,
break;
default:
abort ();
internal_error (__FILE__, __LINE__, "unknown floating point width");
}
break;
@ -462,7 +462,7 @@ alpha_extract_return_value (struct type *valtype, struct regcache *regcache,
break;
default:
abort ();
internal_error (__FILE__, __LINE__, "unknown floating point width");
}
break;
@ -517,7 +517,7 @@ alpha_store_return_value (struct type *valtype, struct regcache *regcache,
error ("Cannot set a 128-bit long double return value.");
default:
abort ();
internal_error (__FILE__, __LINE__, "unknown floating point width");
}
break;
@ -542,7 +542,7 @@ alpha_store_return_value (struct type *valtype, struct regcache *regcache,
error ("Cannot set a 128-bit long double return value.");
default:
abort ();
internal_error (__FILE__, __LINE__, "unknown floating point width");
}
break;