gdb/testsuite/
authorYao Qi <yao@codesourcery.com>
Mon, 24 Oct 2011 13:51:20 +0000 (13:51 +0000)
committerYao Qi <yao@codesourcery.com>
Mon, 24 Oct 2011 13:51:20 +0000 (13:51 +0000)
* lib/gdb.exp (can_single_step_to_signal_handler): Return 0 when
target is tic6x-*-*.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index 3b71f145ddd66b72fd4ea039061cb5ee0ed54cf0..9222124727710e1ec9c89805235cde8b50f08ea9 100644 (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.
index 49a4c7efbef59ac50bd00bcb101246d939037b1a..f1900ef76e6b8c616d95b5d79cee414738ccf5c9 100644 (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
     }