mirror of git://gcc.gnu.org/git/gcc.git
gcc-simulate-thread.exp (simulate-thread): Do not run on alpha*-*-linux* targets.
* lib/gcc-simulate-thread.exp (simulate-thread): Do not run on alpha*-*-linux* targets. From-SVN: r181318
This commit is contained in:
parent
173a8c50f1
commit
0eb5d9c427
|
|
@ -1,3 +1,8 @@
|
||||||
|
2011-11-12 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
* lib/gcc-simulate-thread.exp (simulate-thread): Do not run on
|
||||||
|
alpha*-*-linux* targets.
|
||||||
|
|
||||||
2011-11-12 Iain Sandoe <iains@gcc.gnu.org>
|
2011-11-12 Iain Sandoe <iains@gcc.gnu.org>
|
||||||
|
|
||||||
PR testsuite/51059
|
PR testsuite/51059
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,11 @@
|
||||||
# Call 'fail' if a given test printed "FAIL:", otherwise call 'pass'.
|
# Call 'fail' if a given test printed "FAIL:", otherwise call 'pass'.
|
||||||
|
|
||||||
proc simulate-thread { args } {
|
proc simulate-thread { args } {
|
||||||
|
|
||||||
|
# ??? Exit immediately if this is alpha*-*-linux* target, single-stepping
|
||||||
|
# executable between ldl_l and stl_c insns in gdb breaks LL/SC chaining.
|
||||||
|
if { [istarget alpha*-*-linux*] } { return }
|
||||||
|
|
||||||
if { ![isnative] || [is_remote target] } { return }
|
if { ![isnative] || [is_remote target] } { return }
|
||||||
|
|
||||||
if { [llength $args] == 1 } {
|
if { [llength $args] == 1 } {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue