diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-02-25 04:45:12 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-02-25 04:45:12 +0000 |
commit | e1e9e218c189882084a89fdee655a0a523efbaf8 (patch) | |
tree | fa2a2747358d3ab7ba66773aa0ea0e95064841b6 /gdb/valprint.c | |
parent | d95767bf85efeb27aa791b01d4a8534bcff15a8e (diff) | |
download | gdb-e1e9e218c189882084a89fdee655a0a523efbaf8.zip gdb-e1e9e218c189882084a89fdee655a0a523efbaf8.tar.gz gdb-e1e9e218c189882084a89fdee655a0a523efbaf8.tar.bz2 |
Replace calls to abort() with calls to internal_error().
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r-- | gdb/valprint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index 84103c6..71c4c9e 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -257,7 +257,7 @@ print_decimal (struct ui_file *stream, char *sign, int use_local, sign, temp[2], temp[1], temp[0]); break; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } return; } @@ -360,7 +360,7 @@ print_longest (struct ui_file *stream, int format, int use_local, fprintf_filtered (stream, local_hex_format_custom ("016ll"), val_long); break; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } #else /* !CC_HAS_LONG_LONG || !PRINTF_HAS_LONG_LONG */ /* In the following it is important to coerce (val_long) to a long. It does @@ -407,7 +407,7 @@ print_longest (struct ui_file *stream, int format, int use_local, (unsigned long) val_long); break; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } #endif /* CC_HAS_LONG_LONG || PRINTF_HAS_LONG_LONG */ } @@ -467,7 +467,7 @@ strcat_longest (int format, int use_local, LONGEST val_long, char *buf, sprintf (buf, local_hex_format_custom ("016ll"), val_long); break; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } #else /* !PRINTF_HAS_LONG_LONG */ /* In the following it is important to coerce (val_long) to a long. It does @@ -508,7 +508,7 @@ strcat_longest (int format, int use_local, LONGEST val_long, char *buf, ((long) val_long)); break; default: - abort (); + internal_error (__FILE__, __LINE__, "failed internal consistency check"); } #endif /* !PRINTF_HAS_LONG_LONG */ |