gdb/testsuite/

* lib/gdb.exp (can_single_step_to_signal_handler): Return 0 when
	target is tic6x-*-*.
This commit is contained in:
Yao Qi 2011-10-24 13:51:20 +00:00
parent b6009aca9a
commit b022178194
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-10-24 Yao Qi <yao@codesourcery.com>
* lib/gdb.exp (can_single_step_to_signal_handler): Return 0 when
target is tic6x-*-*.
2011-10-21 Joel Brobecker <brobecker@adacore.com>
* gdb.ada/mi_task_info/task_switch.adb: New file.

View File

@ -1538,7 +1538,8 @@ proc can_single_step_to_signal_handler {} {
# a signal is delivered during software single step, gdb is unable
# to determine the next instruction addresses, because start of signal
# handler is one of them.
if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"] } {
if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
|| [istarget "tic6x-*-*"] } {
return 0
}