Remove vestiges of MI version 0
authorTom Tromey <tom@tromey.com>
Wed, 10 Aug 2022 20:42:36 +0000 (14:42 -0600)
committerTom Tromey <tom@tromey.com>
Mon, 19 Dec 2022 14:46:45 +0000 (07:46 -0700)
I found a few vestiges of MI version 0 in the test suite.  This patch
removes them.

gdb/testsuite/lib/mi-support.exp

index 2dccb8924b174d7f4cf16e27ff03851e6042e018..573a9b91d1a2ec487ec27c634cbcf992c4d94260 100644 (file)
@@ -1414,33 +1414,6 @@ proc mi_continue_to {func} {
     mi_runto_helper $func "continue"
 }
 
-proc mi0_execute_to { cmd reason func args file line extra test } {
-    mi_execute_to_helper "$cmd" "$reason" "$func" "\{$args\}" \
-       "$file" "$line" "$extra" "$test"
-}
-
-proc mi0_next_to { func args file line test } {
-    mi0_execute_to "exec-next" "end-stepping-range" "$func" "$args" \
-       "$file" "$line" "" "$test"
-}
-
-proc mi0_step_to { func args file line test } {
-    mi0_execute_to "exec-step" "end-stepping-range" "$func" "$args" \
-       "$file" "$line" "" "$test"
-}
-
-proc mi0_finish_to { func args file line result ret test } {
-    mi0_execute_to "exec-finish" "function-finished" "$func" "$args" \
-       "$file" "$line" \
-       ",gdb-result-var=\"$result\",return-value=\"$ret\"" \
-       "$test"
-}
-
-proc mi0_continue_to { bkptno func args file line test } {
-    mi0_execute_to "exec-continue" "breakpoint-hit\",bkptno=\"$bkptno" \
-       "$func" "$args" "$file" "$line" "" "$test"
-}
-
 # Creates a breakpoint and checks the reported fields are as expected.
 # This procedure takes the same options as mi_make_breakpoint and
 # returns the breakpoint regexp from that procedure.