binutils-gdb/gdb/testsuite/gdb.base
Ulrich Weigand 591a12a1d4 PowerPC64 ELFv2 ABI: skip global entry point code
This patch handles another aspect of the ELFv2 ABI, which unfortunately
requires common code changes.

In ELFv2, functions may provide both a global and a local entry point.
The global entry point (where the function symbol points to) is intended
to be used for function-pointer or cross-module (PLT) calls, and requires
r12 to be set up to the entry point address itself.   The local entry
point (which is found at a fixed offset after the global entry point,
as defined by bits in the symbol table entries' st_other field), instead
expects r2 to be set up to the current TOC.

Now, when setting a breakpoint on a function by name, you really want
that breakpoint to trigger either way, no matter whether the function
is called via its local or global entry point.  Since the global entry
point will always fall through into the local entry point, the way to
achieve that is to simply set the breakpoint at the local entry point.

One way to do that would be to have prologue parsing skip the code
sequence that makes up the global entry point.  Unfortunately, this
does not work reliably, since -for optimized code- GDB these days
will not actuall invoke the prologue parsing code but instead just
set the breakpoint at the symbol address and rely on DWARF being
correct at any point throughout the function ...

Unfortunately, I don't really see any way to express the notion of
local entry points with the current set of gdbarch callbacks.

Thus this patch adds a new callback, skip_entrypoint, that is
somewhat analogous to skip_prologue, but is called every time
GDB needs to determine a function start address, even in those
cases where GDB decides to not call skip_prologue.

As a side effect, the skip_entrypoint implementation on ppc64
does not need to perform any instruction parsing; it can simply
rely on the local entry point flags in the symbol table entry.

With this implemented, two test cases would still fail to set
the breakpoint correctly, but that's because they use the construct:

 gdb_test "break *hello"

Now, using "*hello" explicitly instructs GDB to set the breakpoint
at the numerical value of "hello" treated as function pointer, so
it will by definition only hit the global entry point.

I think this behaviour is unavoidable, but acceptable -- most people
do not use this construct, and if they do, they get what they
asked for ...

In one of those two test cases, use of this construct is really
not appropriate.  I think this was added way back when as a means
to work around prologue skipping problems on some platforms.  These
days that shouldn't really be necessary any more ...

For the other (step-bt), we really want to make sure backtracing
works on the very first instruction of the routine.  To enable that
test also on powerpc64le-linux, we can modify the code to call the
test function via function pointer (which makes it use the global
entry point in the ELFv2 ABI).

gdb/ChangeLog:

	* gdbarch.sh (skip_entrypoint): New callback.
	* gdbarch.c, gdbarch.h: Regenerate.
	* symtab.c (skip_prologue_sal): Call gdbarch_skip_entrypoint.
	* infrun.c (fill_in_stop_func): Likewise.
	* ppc-linux-tdep.c: Include "elf/ppc64.h".
	(ppc_elfv2_elf_make_msymbol_special): New function.
	(ppc_elfv2_skip_entrypoint): Likewise.
	(ppc_linux_init_abi): Install them for ELFv2.

gdb/testsuite/ChangeLog:

	* gdb.base/sigbpt.exp: Do not use "*" when setting breakpoint
	on a function.
	* gdb.base/step-bt.c: Call hello via function pointer to make
	sure its first instruction is executed on powerpc64le-linux.
2014-02-04 18:44:14 +01:00
..
comp-dir/subdir
Makefile.in 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
a2-run.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
advance.c
advance.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
alias.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
all-bin.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
all-types.c
annota1.c
annota1.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
annota3.c
annota3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
anon.c
anon.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
args.c
args.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
argv0-symlink.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
argv0-symlink.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arithmet.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arrayidx.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arrayidx.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
assign.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
async-shell.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
async-shell.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
async.c
async.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-misread.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-misread.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-noexec.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-noexec.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-twice.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-twice.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach.c
attach.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach2.c
auxv.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
auxv.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
average.c
bang.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bar.c
baz.c
bfp-test.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bfp-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bigcore.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bigcore.exp Fix a error of my previous commit. 2014-01-07 00:28:55 +08:00
bitfields.c gdb/: 2013-02-11 18:05:35 +00:00
bitfields.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bitfields2.c
bitfields2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bitops.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
branches.c
break-always.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-always.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-caller-line.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-caller-line.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-entry.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-inline.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-inline.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-interp-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-interp-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-interp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-on-linker-gcd-function.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-on-linker-gcd-function.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-probes-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-probes.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-probes.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
breakpoint-shadow.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
breakpoint-shadow.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-ar-st.c
call-ar-st.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-rt-st.c
call-rt-st.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-sc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-sc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-signal-resume.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-signals.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-strs.c
call-strs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callexit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callexit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callfuncs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callfuncs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-load-so.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-load.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-load.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal-fork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal-fork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-syscall.c Fix PR breakpoints/16297: catch syscall with syscall 0 2013-12-19 17:01:49 -02:00
catch-syscall.exp gdb/ChangeLog: 2014-01-22 18:54:43 +01:00
charset-malloc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
charset.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
charset.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
checkpoint.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
checkpoint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
chng-syms.c
chng-syms.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code-expr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
commands.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
completion.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
complex.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
complex.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
comprdebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cond-eval-mode.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cond-expr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
condbreak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
consecutive.c
consecutive.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
constvars.c
constvars.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
corefile.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
coremaker.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
coremaker2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-f.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-m.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-v.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cursal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cursal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cvexpr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cvexpr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
d10v.ld
d10vovly.c
dbx.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04: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 Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
default.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
define.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
del.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
del.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
detach.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-exprs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-test.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disabled-location.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disabled-location.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu-1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu-2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-fork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-syscall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-vfork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
display.c
display.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dmsym.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dmsym.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dmsym_main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-next.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-next.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-non-stop.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-non-stop.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-pending.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-pending.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-pendshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dump.c
dump.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dup-sect.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dup-sect.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
duplicate-bp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
duplicate-bp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
echo.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
empty_exe.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ena-dis-br.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ending-run.c
ending-run.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enum_cond.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enum_cond.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enumval.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enumval.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
environ.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eu-strip-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eu-strip-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval-avoid-side-effects.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval-skip.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exe-lock.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
execd-prog.c
exitsignal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exprs.c PR exp/15364: 2013-05-13 16:51:52 +00:00
exprs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fileio.c update fileio test 2013-11-04 11:02:08 -07:00
fileio.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
filesym.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
filesym.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find-unmapped.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find-unmapped.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
finish.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsection.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsection.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsectshr.c
float.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
float.exp AArch64: gdb.base/float.exp: Fix `info float' test 2014-01-15 22:17:53 +00:00
foll-exec.c fix some "exec" tests 2013-11-04 11:02:10 -07:00
foll-exec.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foll-fork.c
foll-fork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foll-vfork-exit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foll-vfork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foll-vfork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foo.c
fortran-sym-case.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fortran-sym-case.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
frame-args.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
frame-args.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
freebpcmd.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
freebpcmd.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullname.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullname.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand-func.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
func-ptr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
func-ptr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
funcargs.c
funcargs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-buffer-overflow.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-buffer-overflow.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-pie.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-pie.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1056.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1090.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1090.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1250.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1250.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1821.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1821.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11530.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11530.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11531.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11531.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb_history
gdbindex-stabs-dwarf.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdbindex-stabs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdbindex-stabs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdbvars.c Based on the discussion at: 2013-09-16 17:47:30 +00:00
gdbvars.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-debugdata.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-debugdata.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu_vector.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu_vector.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
grbx.c
hashline1.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hashline2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hashline3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
help.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-continue.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-continue.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-frame.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-frame.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
huge.c
huge.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ifelse.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
inferior-died.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
inferior-died.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infnan.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infnan.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-macros.c * gdb.base/info-macros.c: Fix whitespace. 2012-09-05 18:20:53 +00:00
info-macros.exp Prevent appending "-g" after "-g3" to compile options in info-macros.exp. 2014-01-22 17:02:13 +01:00
info-os.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-os.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-proc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared-solib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared-solib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared.exp Fix info-shared.exp testcase to expect the leading `.' found on ppc64's symbols. 2014-01-28 15:31:23 -02:00
info-target.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infoline.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infoline.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
int-type.c
interact.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interrupt-noterm.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interrupt-noterm.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interrupt.c
interrupt.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-dlmain.c
jit-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-simple.c
jit-simple.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-so.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jump.c
jump.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
kill-after-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
kill-after-signal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
label.c gdb/testsuite 2013-01-18 19:14:51 +00:00
label.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
langs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
langs0.c
langs1.c
langs1.f Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
langs2.c
langs2.cxx
ldbl_e308.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ldbl_e308.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
lineinc.c
lineinc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
list.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
list0.c list.exp: Avoid hardcoding line numbers. 2013-03-28 11:56:51 +00:00
list0.h
list1.c
logical.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
long_long.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
long_long.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longest-types.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longest-types.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longjmp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longjmp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
m32r.ld
m32rovly.c
macscp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
macscp1.c PR macros/7961: 2012-06-27 18:08:41 +00:00
macscp2.h
macscp3.h
macscp4.h
maint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
memattr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
memattr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mips_pro.c
mips_pro.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
miscexprs.c
miscexprs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
morestack.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
morestack.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
moribund-step.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
multi-forks.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
multi-forks.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nextoverexit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nextoverexit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nodebug.c
nodebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nofield.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nofield.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
normal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nostdlib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nostdlib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
opaque.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
opaque0.c
opaque1.c
overlays.c
overlays.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovlymgr.c
ovlymgr.h
page.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pc-fp.c
pc-fp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pending.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pending.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pendshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
permissions.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pi.txt
pie-execl.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pie-execl.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pointers.c
pointers.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr11022.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr11022.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-lib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-lib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
printcmds.c * gdb.base/callfuncs.c (main): Assign malloc's return value 2013-11-27 10:39:26 -02:00
printcmds.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue-include.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue-include.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue-include.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptr-typedef.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype.c
ptype.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype1.c
radix.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
random-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
random-signal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
randomize.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
randomize.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
range-stepping.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
range-stepping.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline-ask.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline-ask.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline-ask.inputrc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
realname-expand-real.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
realname-expand.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
realname-expand.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
recpar.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
recpar.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
recurse.c
recurse.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relational.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relativedebug.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relativedebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relocate.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relocate.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
remote.c
remote.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
remotetimeout.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
reread.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
reread1.c
reread2.c
restore.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
restore.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return.c
return.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return2.c
return2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
run.c 2013-10-21 Jose E. Marchesi <jose.marchesi@oracle.com> 2013-10-21 12:42:02 +00:00
save-bp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
save-bp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
savedregs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
savedregs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
scope.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
scope0.c
scope1.c
sect-cmd.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
segv.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep-proc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepdebug.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepdebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepdebug2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepsymtab.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepsymtab.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
set-lang-auto.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
set-noassign.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
setshow.c
setshow.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
setvar.c * gdb.base/callfuncs.c (main): Assign malloc's return value 2013-11-27 10:39:26 -02:00
setvar.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shell.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shlib-call.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shreloc1.c
shreloc2.c
sigall.c testsuite: handle SIGLOST/SIGPWR conflict in sparc64-*-linux-gnu targets. 2013-12-03 04:34:48 -08:00
sigall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigaltstack.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigaltstack.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigbpt.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigbpt.exp PowerPC64 ELFv2 ABI: skip global entry point code 2014-02-04 18:44:14 +01:00
sigchld.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigchld.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-addr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-addr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-obj.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-obj.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-thread.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-thread.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signals.c
signals.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signest.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signest.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signull.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signull.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigrepeat.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigrepeat.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigstep.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigstep.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sizeof.c
sizeof.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
skip.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
skip.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
skip1.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
so-disc-shr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
so-impl-ld.c
so-impl-ld.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
so-indr-cl.c
so-indr-cl.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-corrupted.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-disc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-disc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-nodir.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search-lib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search-lib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-weak.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-weak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib.c
solib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib1.c
solib2.c
source-dir.exp Fix dir command for duplicated paths and add a new testcase. 2014-01-07 17:03:06 -02:00
source-error.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source-nofile.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source-test.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
spu.ld
ss.h
stack-checking.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stack-checking.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stale-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stale-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stap-probe.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stap-probe.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
start.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
start.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-break.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-break.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-bt.c PowerPC64 ELFv2 ABI: skip global entry point code 2014-02-04 18:44:14 +01:00
step-bt.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-line.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-line.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-line.inp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-resume-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-resume-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-symless.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-symless.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-test.c
step-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
store.c
store.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs2.c
structs2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs3.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
subst.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sum.c
sym-file-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sym-file-loader.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sym-file-loader.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sym-file-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sym-file.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
symbol-without-target_section.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
symbol-without-target_section.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
term.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
term.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
testenv.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
testenv.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
trace-commands.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
tui-layout.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
twice.c
twice.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ui-redirect.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unload.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unload.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unloadshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unloadshr2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
until.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unwindonsignal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unwindonsignal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-db-attach.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-db-attach.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
value-double-free.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
value-double-free.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
varargs.c
varargs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
vforked-prog.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
volatile.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-non-mem.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-non-mem.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-read.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-read.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-vfork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-vfork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch_thread_num.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch_thread_num.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone-stripped.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-delete.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-delete.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw-hit-once.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw-hit-once.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-solib-shr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-solib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint.c fix PR symtab/15719 2013-08-02 16:41:08 +00:00
watchpoint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoints.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoints.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
wchar.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
wchar.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
weaklib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
weaklib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
whatis-exp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
whatis.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
whatis.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00