This patch manually changes the "return -1" and "return 0" statements
that weren't caught by the sed command.
This happened only in one testcase due to the statements being inside a
foreach_with_prefix block, and in the others because the return
statement was in a misaligned line, which is now fixed.
Approved-By: Tom Tromey <tom@tromey.com>
}
if {![runto_main]} {
- return 0
+ return
}
# Figure out where the breakpoint will be placed taking account for
}
if {![runto_main]} {
- return 0
+ return
}
# Merge FFLAGS_VALUE and FRM_VALUE into a single hexadecimal value
}
if {![runto_main]} {
- return 0
+ return
}
set testfile "${testfile}-${insn_size}"
if {[prepare_for_testing "failed to prepare" $testfile \
"$srcfile $srcfile2" $flags]} {
- return -1
+ return
}
if {![runto_main]} {
- return 0
+ return
}
gdb_breakpoint "bar"