From f3574227a8f3cf6696a452bce6e628a0b014f21f Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 18 Aug 2010 19:13:33 +0000 Subject: * 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. --- gdb/dwarf2read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/dwarf2read.c') diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 09e7804..6ea1704 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1585,7 +1585,7 @@ dwarf2_get_section_info (struct objfile *objfile, const char *section_name, else if (section_is_p (section_name, FRAME_SECTION)) info = &data->frame; else - gdb_assert (0); + gdb_assert_not_reached ("unexpected section"); if (info->asection != NULL && info->size != 0 && info->buffer == NULL) /* We haven't read this section in yet. Do it now. */ @@ -14263,7 +14263,7 @@ munmap_section_buffer (struct dwarf2_section_info *info) gdb_assert (munmap ((void *) map_begin, map_length) == 0); #else /* Without HAVE_MMAP, we should never be here to begin with. */ - gdb_assert (0); + gdb_assert_not_reached ("no mmap support"); #endif } } -- cgit v1.1