OSDN Git Service

* alpha-tdep.c (alpha_extract_return_value): Use internal_error.
authorRichard Henderson <rth@redhat.com>
Mon, 2 Jun 2003 20:46:41 +0000 (20:46 +0000)
committerRichard Henderson <rth@redhat.com>
Mon, 2 Jun 2003 20:46:41 +0000 (20:46 +0000)
        (alpha_store_return_value): Likewise.

gdb/ChangeLog
gdb/alpha-tdep.c

index f85e00c..6bea154 100644 (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.
index 11d46ce..9e69eda 100644 (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;