mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 05:48:20 +08:00
Use gdb_assert_not_reached in arm-linux-nat.c
This changes arm-linux-nat.c to use gdb_assert_not_reached rather than an assert of false. gdb/ChangeLog 2019-05-04 Tom Tromey <tom@tromey.com> * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint): Use gdb_assert_not_reached.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2019-05-04 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
|
||||
Use gdb_assert_not_reached.
|
||||
|
||||
2019-05-04 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
|
||||
|
@ -690,7 +690,7 @@ arm_linux_nat_target::can_use_hw_breakpoint (enum bptype type,
|
||||
return -1;
|
||||
}
|
||||
else
|
||||
gdb_assert (FALSE);
|
||||
gdb_assert_not_reached ("unknown breakpoint type");
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user