2003-02-06 Jason Molenda (jason-cl@molenda.com)
* gdb.mi/mi-syn-frame.c (subroutine): Add a comment explaining why the code is written that way.
This commit is contained in:
parent
b871e4ecc4
commit
c56716b08b
|
@ -1,3 +1,8 @@
|
||||||
|
2003-02-06 Jason Molenda (jason-cl@molenda.com)
|
||||||
|
|
||||||
|
* gdb.mi/mi-syn-frame.c (subroutine): Add a comment explaining
|
||||||
|
why the code is written that way.
|
||||||
|
|
||||||
2003-02-05 Michael Chastain <mec@shout.net>
|
2003-02-05 Michael Chastain <mec@shout.net>
|
||||||
|
|
||||||
* gdb.base/dump.exp: Add missing copyright line.
|
* gdb.base/dump.exp: Add missing copyright line.
|
||||||
|
|
|
@ -43,6 +43,10 @@ handler (int sig)
|
||||||
subroutine (sig);
|
subroutine (sig);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The first statement in subroutine () is a place for a breakpoint.
|
||||||
|
Without it, the breakpoint is put on the while comparison and will
|
||||||
|
be hit at each iteration. */
|
||||||
|
|
||||||
void
|
void
|
||||||
subroutine (int in)
|
subroutine (int in)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue