diff options
Diffstat (limited to 'gdb/h8500-tdep.c')
-rw-r--r-- | gdb/h8500-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/h8500-tdep.c b/gdb/h8500-tdep.c index aa53d69..2f20c15 100644 --- a/gdb/h8500-tdep.c +++ b/gdb/h8500-tdep.c @@ -251,7 +251,7 @@ h8500_register_size (int regno) case PC_REGNUM: return 4; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } } @@ -286,7 +286,7 @@ h8500_register_virtual_type (int regno) case PC_REGNUM: return builtin_type_unsigned_long; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } } |