From 5d0331e5f28a2d99afccf29e9b2805cd3b13e122 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Thu, 6 Feb 2003 06:27:01 +0000 Subject: [PATCH] 2003-02-05 Jason Molenda (jason-cl@molenda.com) * gdb.mi/mi-syn-frames.c (subroutine): Add an extra statement at the beginning so the breakpoint doesn't get set on the loop. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.mi/mi-syn-frame.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ef2d7b331f..e158654823 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2003-02-05 Jason Molenda (jason-cl@molenda.com) + + * gdb.mi/mi-syn-frames.c (subroutine): Add an extra statement + at the beginning so the breakpoint doesn't get set on the loop. + 2003-02-05 Michael Chastain * gdb.c++/local.exp: Relax the test for PR gdb/825 to accept diff --git a/gdb/testsuite/gdb.mi/mi-syn-frame.c b/gdb/testsuite/gdb.mi/mi-syn-frame.c index 83d2d46876..a0da3c42b8 100644 --- a/gdb/testsuite/gdb.mi/mi-syn-frame.c +++ b/gdb/testsuite/gdb.mi/mi-syn-frame.c @@ -46,8 +46,9 @@ handler (int sig) void subroutine (int in) { - while (in < 100) - in++; + int count = in; + while (count < 100) + count++; } void