summaryrefslogtreecommitdiff
path: root/gdb/alpha-tdep.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-06-02 20:46:41 +0000
committerRichard Henderson <rth@redhat.com>2003-06-02 20:46:41 +0000
commit3e61900dd0815f8a8e63bdcab62a8c14deda0ab6 (patch)
treeffa000f1f6b6ed70e3b5a811962ca4ff3bedad7b /gdb/alpha-tdep.c
parent04f7931be1153f4f9168f8810b1ed66efed612bd (diff)
downloadgdb-3e61900dd0815f8a8e63bdcab62a8c14deda0ab6.tar.gz
* alpha-tdep.c (alpha_extract_return_value): Use internal_error.
(alpha_store_return_value): Likewise.
Diffstat (limited to 'gdb/alpha-tdep.c')
-rw-r--r--gdb/alpha-tdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/alpha-tdep.c b/gdb/alpha-tdep.c
index 11d46cef819..9e69eda0714 100644
--- a/gdb/alpha-tdep.c
+++ b/gdb/alpha-tdep.c
@@ -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;