binutils-gdb/gdb/testsuite/gdb.base
Pedro Alves 187d10dd19 There's code in annotate.c and breakpoint.c that is supposed to
suppress multiple breakpoints-invalid annotations when the ignore
count of a breakpoint changes, up until the target actually stops.

But, the code is bogus:

void
annotate_breakpoints_changed (void)
{
  if (annotation_level == 2)
    {
      target_terminal_ours ();
      printf_unfiltered (("\n\032\032breakpoints-invalid\n"));
      if (ignore_count_changed)
	ignore_count_changed = 0;   /* Avoid multiple break annotations.  */
    }
}

The "ignore_count_changed" flag isn't actually guarding the output of
the annotation at all.  It would have been better written something
like:

void
annotate_breakpoints_changed (void)
{
  if (annotation_level == 2 && !ignore_count_changed)
    {
      target_terminal_ours ();
      printf_unfiltered (("\n\032\032breakpoints-invalid\n"));
      ignore_count_changed = 0;   /* Avoid multiple break annotations.  */
    }
}

but, it wasn't.  AFAICS, that goes all the way back to the original
patch'es submission and check in, at
<http://sourceware.org/ml/gdb-patches/1999-q4/msg00106.html>.  I
looked a tar of HP's wdb from 1999, and even though that contains
local changes in the annotate code, this suppression seems borked
there too to me.

The original patch added a test to supposedly exercise this
suppression, but, it actually doesn't.  It merely tests that
"breakpoints-invalid" is output after "stopped", but doesn't check
whether the duplicates supression actually works (IOW, check that only
_one_ annotation is seen).  I was going to simply delete the tests
too, but a following patch will eliminate the duplicates in a
different way (which I needed for a different reason), so instead, I'm
making the tests actually fail if a duplicate annotation is seen.

Worry not, the test doesn't actually fail!  The reason is that
breakpoint.c does:

      else if (b->ignore_count > 0)
	{
	  b->ignore_count--;
	  annotate_ignore_count_change ();
	  bs->stop = 0;
	  /* Increase the hit count even though we don't stop.  */
	  ++(b->hit_count);
	  observer_notify_breakpoint_modified (b);
	}

where the annotate_ignore_count_change call is meant to inform the
"breakpoint_modified" annotation observer to ignore the notification.
All sounds good.  But, the trouble is that nowadays annotate.c only
installs the observers if GDB is started with annotations enabled with
a command line option (gdb --annotate=2):

void
_initialize_annotate (void)
{
  if (annotation_level == 2)
    {
      observer_attach_breakpoint_deleted (breakpoint_changed);
      observer_attach_breakpoint_modified (breakpoint_changed);
    }
}

and annota1.exp, to enable annotations, starts GDB normally, and
afterwards does "set annotate 2", so the observers aren't installed
when annota1.exp is run, and therefore changing the ignore count isn't
triggering any annotation at all...

gdb/
2013-01-22  Pedro Alves  <palves@redhat.com>

	* annotate.c (ignore_count_changed): Delete.
	(annotate_breakpoints_changed): Don't clear ignore_count_changed.
	(annotate_ignore_count_change): Delete.
	(annotate_stopped): Don't emit a delayed breakpoints-changed
	annotation.
	* annotate.h (annotate_ignore_count_change): Delete.
	* breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
	annotate_ignore_count_change.

gdb/testsuite/
2013-01-22  Pedro Alves  <palves@redhat.com>

	* gdb.base/annota1.exp (annotate ignore count change): Add
	expected output for failure case.
2013-01-22 20:08:30 +00:00
..
comp-dir/subdir
a2-run.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
advance.c
advance.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
alias.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
all-bin.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
all-types.c
annota1.c
annota1.exp There's code in annotate.c and breakpoint.c that is supposed to 2013-01-22 20:08:30 +00:00
annota3.c
annota3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
anon.c
anon.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
args.c
args.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arithmet.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arrayidx.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arrayidx.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
assign.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
async-shell.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
async-shell.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
async.c
async.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach2.c
attach-pie-misread.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-pie-misread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-pie-noexec.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-pie-noexec.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-twice.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-twice.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach.c
attach.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
auxv.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
auxv.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
average.c
bang.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bar.c
baz.c
bfp-test.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bfp-test.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bigcore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bigcore.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bitfields2.c
bitfields2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bitfields.c
bitfields.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bitops.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
branches.c
break1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-always.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-always.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-caller-line.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-caller-line.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-entry.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-inline.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-inline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-on-linker-gcd-function.cc Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-on-linker-gcd-function.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
breakpoint-shadow.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
breakpoint-shadow.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-ar-st.c
call-ar-st.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-rt-st.c
call-rt-st.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-sc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-sc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-signal-resume.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-signals.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-strs.c
call-strs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callexit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callexit.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callfuncs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callfuncs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-load-so.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-load.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-load.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-signal.c 2013-01-03 Pedro Alves <palves@redhat.com> 2013-01-16 17:31:40 +00:00
catch-signal.exp 2013-01-03 Pedro Alves <palves@redhat.com> 2013-01-16 17:31:40 +00:00
catch-syscall.c
catch-syscall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
charset-malloc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
charset.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
charset.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
checkpoint.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
checkpoint.exp 2013-01-18 Hafiz Abid Qadeer<abidh@codesourcery.com> 2013-01-18 10:50:15 +00:00
chng-syms.c
chng-syms.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code-expr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
commands.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
completion.exp * cp-abi.c (cp_abi_completer): New function. 2013-01-17 16:27:35 +00:00
complex.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
complex.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
comprdebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cond-eval-mode.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cond-expr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
condbreak.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
consecutive.c
consecutive.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
constvars.c
constvars.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
corefile.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
coremaker2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
coremaker.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-f.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-m.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-v.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cursal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cursal.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cvexpr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cvexpr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
d10v.ld
d10vovly.c
dbx.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
debug-expr.c * eval.c (evaluate_subexp_standard): Fix thinko in handling 2012-08-08 21:17:04 +00:00
debug-expr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
default.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
define.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
del.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
del.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
detach.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dfp-exprs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dfp-test.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dfp-test.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disabled-location.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disabled-location.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu-1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu-2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disp-step-fork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disp-step-syscall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disp-step-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
display.c
display.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym_main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dprintf.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dprintf.exp gdb/testsuite/ 2013-01-11 15:21:14 +00:00
dump.c
dump.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dup-sect.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dup-sect.S Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
duplicate-bp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
duplicate-bp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
echo.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
empty_exe.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ena-dis-br.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ending-run.c
ending-run.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enum_cond.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enum_cond.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enumval.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enumval.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
environ.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eu-strip-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eu-strip-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eval-skip.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eval.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
exe-lock.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
execd-prog.c
expand-psymtabs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
expand-psymtabs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
exprs.c
exprs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fileio.c
fileio.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find-unmapped.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find-unmapped.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
finish.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsection.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsection.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsectshr.c
float.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
float.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-exec.c
foll-exec.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-fork.c
foll-fork.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-vfork-exit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-vfork.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foo.c
fortran-sym-case.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fortran-sym-case.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
frame-args.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
frame-args.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
freebpcmd.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
freebpcmd.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fullname.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fullname.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
funcargs.c
funcargs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-buffer-overflow.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-buffer-overflow.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-relro-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-relro-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-relro.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1056.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1090.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1090.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1250.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1250.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1555-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1555.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1555.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1821.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1821.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11530.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11530.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11531.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11531.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb_history
gdbindex-stabs-dwarf.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbindex-stabs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbindex-stabs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbvars.c
gdbvars.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu_vector.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu_vector.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-debugdata.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-debugdata.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-ifunc-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-ifunc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-ifunc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
grbx.c
hashline1.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hashline2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hashline3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
help.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-continue.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-continue.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-frame.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-frame.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
huge.c
huge.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ifelse.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.h Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
inferior-died.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
inferior-died.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infnan.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infnan.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-fun-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-fun.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-fun.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-macros.c * gdb.base/info-macros.c: Fix whitespace. 2012-09-05 18:20:53 +00:00
info-macros.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-os.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-os.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-proc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-target.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infoline.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infoline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
int-type.c
interact.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interrupt.c
interrupt.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-dlmain.c
jit-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-simple.c
jit-simple.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-so.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jump.c
jump.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
kill-after-signal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
kill-after-signal.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
label.c gdb/testsuite 2013-01-18 19:14:51 +00:00
label.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
langs0.c
langs1.c
langs1.f Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
langs2.c
langs2.cxx
langs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ldbl_e308.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ldbl_e308.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
lineinc1.h
lineinc2.h
lineinc3.h
lineinc.c
lineinc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
linespecs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
list0.c
list0.h
list1.c
list.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
logical.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
long_long.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
long_long.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longest-types.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longest-types.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longjmp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longjmp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
m32r.ld
m32rovly.c
macscp1.c PR macros/7961: 2012-06-27 18:08:41 +00:00
macscp2.h
macscp3.h
macscp4.h
macscp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
maint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
Makefile.in
memattr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
memattr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
mips_pro.c
mips_pro.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
miscexprs.c
miscexprs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
morestack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
morestack.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
moribund-step.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
multi-forks.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
multi-forks.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nextoverexit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nextoverexit.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nodebug.c
nodebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nofield.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nofield.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nostdlib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nostdlib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
opaque0.c
opaque1.c
opaque.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
overlays.c
overlays.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ovlymgr.c
ovlymgr.h
page.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pc-fp.c
pc-fp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pending.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pending.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pendshr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
permissions.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pi.txt
pie-execl.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pie-execl.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pointers.c
pointers.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pr11022.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pr11022.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prelink-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prelink.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prelink.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-lib1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-lib2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
printcmds.c PR gdb/14288 2012-11-10 20:19:01 +00:00
printcmds.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prologue.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prologue.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
psymtab1.c
psymtab2.c
psymtab.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptr-typedef.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptr-typedef.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptype1.c
ptype.c
ptype.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
radix.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
randomize.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
randomize.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline-ask.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline-ask.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline-ask.inputrc Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
recpar.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
recpar.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
recurse.c
recurse.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relational.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relativedebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relativedebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relocate.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relocate.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
remote.c
remote.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
remotetimeout.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
reread1.c
reread2.c
reread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
restore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
restore.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return2.c
return2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return-nodebug1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return-nodebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return-nodebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return.c
return.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
run.c
save-bp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
save-bp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
savedregs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
savedregs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
scope0.c
scope1.c
scope.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sect-cmd.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep-proc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepsymtab.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepsymtab.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
set-lang-auto.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
set-noassign.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
setshow.c
setshow.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
setvar.c gdb: 2012-11-02 00:14:39 +00:00
setvar.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shell.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shlib-call.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shmain.c
shr1.c
shr2.c
shreloc1.c
shreloc2.c
shreloc.c
shreloc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigall.c
sigall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigaltstack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigaltstack.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigbpt.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigbpt.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigchld.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigchld.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-addr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-addr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-obj.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-obj.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-thread.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-thread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signals.c
signals.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signest.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signest.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signull.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signull.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigrepeat.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigrepeat.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigstep.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigstep.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sizeof.c
sizeof.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
skip1.c
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
skip.c
skip.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
so-disc-shr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
so-impl-ld.c
so-impl-ld.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
so-indr-cl.c
so-indr-cl.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib1.c
solib2.c
solib-corrupted.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-disc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-disc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-display-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-display-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-display.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-nodir.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-overlap-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-overlap-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-overlap.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-symbol-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-symbol-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-symbol.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-weak.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-weak.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib.c
solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
source-error.gdb Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
source-test.gdb Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
source.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
spu.ld
ss.h
stack-checking.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stack-checking.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stale-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stale-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stap-probe.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stap-probe.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
start.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
start.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-break.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-break.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-bt.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-bt.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-line.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-line.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-line.inp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-resume-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-resume-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-symless.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-symless.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-test.c
step-test.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
store.c
store.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs2.c
structs2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs3.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
subst.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sum.c
symbol-without-target_section.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
symbol-without-target_section.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
term.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
term.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
testenv.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
testenv.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
trace-commands.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
tui-layout.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
twice.c
twice.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
type-opaque-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
type-opaque-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
type-opaque.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ui-redirect.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unload.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unload.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unloadshr2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unloadshr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
until.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unwindonsignal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unwindonsignal.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-db-attach.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-db-attach.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
value-double-free.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
value-double-free.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
varargs.c
varargs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
vforked-prog.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
volatile.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch_thread_num.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch_thread_num.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond-infcall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-non-mem.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-non-mem.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-read.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-read.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-vfork.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-cond-gone-stripped.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-cond-gone.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-cond-gone.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-delete.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-delete.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw-hit-once.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw-hit-once.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-solib-shr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint.c * gdb.base/watchpoint.c (func2): Initialize local_a. Add 2012-08-02 15:55:45 +00:00
watchpoint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoints.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoints.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
wchar.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
wchar.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
weaklib1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
weaklib2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis-exp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00