2003-02-05 Jason Molenda (jason-cl@molenda.com)
authorJason Molenda <jmolenda@apple.com>
Thu, 6 Feb 2003 06:27:01 +0000 (06:27 +0000)
committerJason Molenda <jmolenda@apple.com>
Thu, 6 Feb 2003 06:27:01 +0000 (06:27 +0000)
* 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
gdb/testsuite/gdb.mi/mi-syn-frame.c

index ef2d7b331fcb5a2f7e7b48056eadf44deb70b3f6..e158654823fc68aa3fc9bfb15e19e75a08214cd0 100644 (file)
@@ -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  <mec@shout.net>
 
        * gdb.c++/local.exp: Relax the test for PR gdb/825 to accept
index 83d2d46876e1ad6b3fbe06b6d5f61f7d38dc98b3..a0da3c42b86995ba1696e445c0ea2edf1e7b2cd5 100644 (file)
@@ -46,8 +46,9 @@ handler (int sig)
 void
 subroutine (int in)
 {
-  while (in < 100)
-    in++;
+  int count = in;
+  while (count < 100)
+    count++;
 }
 
 void