8bd10a10b3
* symtab.c (rbreak_command): Added code to include a filename specification in the rbreak argument. * NEWS: Added a brief description of filename-qualified rbreak. * gdb.base/Makefile.in (EXECUTABLES): Added pr10179. * gdb.base/pr10179-a.c: * gdb.base/pr10179-b.c: * gdb.base/pr10179.exp: New files. * gdb.texinfo (Setting Breakpoints): Added description of filename-qualified rbreak. * refcard.tex (Breakpoints and Watchpoints): Added brief description of filename-qualified rbreak.
18 lines
83 B
C
18 lines
83 B
C
#include <stdio.h>
|
|
|
|
extern int foo2();
|
|
|
|
int
|
|
foo1()
|
|
{
|
|
}
|
|
|
|
int
|
|
bar1()
|
|
{
|
|
}
|
|
|
|
main()
|
|
{
|
|
}
|