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.
This commit is contained in:
parent
4a8f6654af
commit
5d0331e5f2
@ -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
|
||||
|
@ -46,8 +46,9 @@ handler (int sig)
|
||||
void
|
||||
subroutine (int in)
|
||||
{
|
||||
while (in < 100)
|
||||
in++;
|
||||
int count = in;
|
||||
while (count < 100)
|
||||
count++;
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user