diff options
author | Doug Evans <dje@google.com> | 2010-08-18 19:13:33 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2010-08-18 19:13:33 +0000 |
commit | f3574227a8f3cf6696a452bce6e628a0b014f21f (patch) | |
tree | 092c1700f68814b1de54237a177232833a673ea4 /gdb/gdb_assert.h | |
parent | c92817ce8d63df3e3c7225d77723f1c4ae725f58 (diff) | |
download | gdb-f3574227a8f3cf6696a452bce6e628a0b014f21f.zip gdb-f3574227a8f3cf6696a452bce6e628a0b014f21f.tar.gz gdb-f3574227a8f3cf6696a452bce6e628a0b014f21f.tar.bz2 |
* gdb_assert.h (gdb_assert_not_reached): New macro.
(gdb_assert_fail): Fix typo in comment.
* avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
gdb_assert (0).
* darwin-nat.c (darwin_check_new_threads): Ditto.
* dwarf2read.c (dwarf2_get_section_info): Ditto.
(munmap_section_buffer): Ditto.
* m32c-tdep.c (make_types): Ditto.
(m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
* macroexp.c (get_character_constant): Ditto.
(get_string_literal): Ditto.
* mep-tdep.c (mep_pseudo_cr_size): Ditto.
(mep_pseudo_cr_index, mep_register_type): Ditto.
(mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
(mep_get_insn, mep_analyze_prologue): Ditto.
* objfiles.c (qsort_cmp): Ditto.
* prologue-value.c (pv_is_identical): Ditto.
* record.c (record_get_loc): Ditto.
* value.c (value_static_field): Ditto.
* xtensa-tdep.c (call0_track_op): Ditto.
Diffstat (limited to 'gdb/gdb_assert.h')
-rw-r--r-- | gdb/gdb_assert.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gdb/gdb_assert.h b/gdb/gdb_assert.h index 2d04fb0..8537976 100644 --- a/gdb/gdb_assert.h +++ b/gdb/gdb_assert.h @@ -42,7 +42,7 @@ #endif #endif -/* This prints an "Assertion failed" message, aksing the user if they +/* This prints an "Assertion failed" message, asking the user if they want to continue, dump core, or just exit. */ #if defined (ASSERT_FUNCTION) #define gdb_assert_fail(assertion, file, line, function) \ @@ -54,4 +54,15 @@ assertion) #endif +/* The canonical form of gdb_assert (0). + MESSAGE is a string to include in the error message. */ + +#if defined (ASSERT_FUNCTION) +#define gdb_assert_not_reached(message) \ + internal_error (__FILE__, __LINE__, "%s: %s", ASSERT_FUNCTION, _(message)) +#else +#define gdb_assert_not_reached(message) \ + internal_error (__FILE__, __LINE__, _(message)) +#endif + #endif /* gdb_assert.h */ |