binutils-gdb/gdb/testsuite/gdb.base
Sergio Durigan Junior 7c1618381f Implement pahole-like 'ptype /o' option
This commit implements the pahole-like '/o' option for 'ptype', which
prints the offsets and sizes of struct fields, reporting whenever
there is a hole found.

The output is heavily based on pahole(1), with a few modifications
here and there to adjust it to our reality.  Here's an example:

  /* offset    |  size */  type = struct wer : public tuv {
			   public:
  /*   32      |    24 */    struct tyu {
  /*   32:31   |     4 */        int a1 : 1;
  /*   32:28   |     4 */        int a2 : 3;
  /*   32: 5   |     4 */        int a3 : 23;
  /*   35: 3   |     1 */        char a4 : 2;
  /* XXX  3-bit hole   */
  /* XXX  4-byte hole  */
  /*   40      |     8 */        int64_t a5;
  /*   48:27   |     4 */        int a6 : 5;
  /*   48:56   |     8 */        int64_t a7 : 3;

				 /* total size (bytes):   24 */
			     } a1;

			     /* total size (bytes):   56 */
			   }

A big part of this patch handles the formatting logic of 'ptype',
which is a bit messy.  The code to handle bitfield offsets, however,
took some time to craft.  My thanks to Pedro Alves for figuring things
out and pointing me to the right direction, as well as coming up with
a way to inspect the layout of structs with bitfields (see testcase
for comments).

After many discussions both on IRC and at the mailing list, I tried to
implement printing vtables and inherited classes.  Unfortunately the
code grew too complex and there were still a few corner cases failing
so I had to drop the attempt.  This should be implemented in a future
patch.

This patch is the start of a long-term work I'll do to flush the local
patches we carry for Fedora GDB.  In this specific case, I'm aiming at
upstreaming the feature implemented by the 'pahole.py' script that is
shipped with Fedora GDB:

  <https://src.fedoraproject.org/rpms/gdb/blob/master/f/gdb-archer.patch#_311>

This has been regression-tested on the BuildBot.  There's a new
testcase for it, along with an update to the documentation.  I also
thought it was worth mentioning this feature in the NEWS file.

gdb/ChangeLog:
2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>
	    Pedro Alves  <palves@redhat.com>

	PR cli/16224
	* NEWS (Changes since GDB 8.0): Mention new '/o' flag.
	* c-typeprint.c (OFFSET_SPC_LEN): New define.
	(c_type_print_varspec_prefix): New argument 'struct
	print_offset_data *'.
	(c_type_print_base_1): New function and prototype.
	(c_print_type_1): New function, with code from 'c_print_type'.
	(c_print_type): Use 'c_print_type_1'.
	(c_type_print_varspec_prefix): New argument 'struct
	print_offset_data *'.  Use it.  Call 'c_type_print_base_1'
	instead of 'c_print_type_base'.
	(print_spaces_filtered_with_print_options): New function.
	(output_access_specifier): Take new argument FLAGS.  Modify
	function to call 'print_spaces_filtered_with_print_options'.
	(c_print_type_vtable_offset_marker): New function.
	(c_print_type_union_field_offset): New function.
	(c_print_type_struct_field_offset): New function.
	(c_print_type_no_offsets): New function.
	(c_type_print_base_struct_union): New argument 'struct
	print_offset_data *'.  Print offsets and sizes for
	struct/union/class fields.
	* typeprint.c (const struct type_print_options
	type_print_raw_options): Initialize 'print_offsets'.
	(static struct type_print_options default_ptype_flags):
	Likewise.
	(struct print_offset_data print_offset_default_data): New
	variable.
	(whatis_exp): Handle '/o' option.
	(_initialize_typeprint): Add '/o' flag to ptype's help.
	* typeprint.h (struct print_offset_data): New struct.
	(struct type_print_options) <print_offsets>: New field.

gdb/testsuite/ChangeLog:
2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR cli/16224
	* gdb.base/ptype-offsets.cc: New file.
	* gdb.base/ptype-offsets.exp: New file.

gdb/doc/ChangeLog:
2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR cli/16224
	* gdb.texinfo (ptype): Add documentation for new flag '/o'.
2017-12-15 15:07:42 -05:00
..
comp-dir/subdir
gdbinit-history
a2-run.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
advance.c
advance.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
alias.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-0.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-4.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-5.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-6.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-7.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures.exp.in Don't throw exception in dis_asm_memory_error 2017-01-26 14:29:20 +00:00
all-bin.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-types.c
annota-input-while-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota-input-while-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota1.c
annota1.exp Skip a few tests on targets that can't use the "run" commmand. 2017-10-13 18:11:31 +01:00
annota3.c
annota3.exp Skip a few tests on targets that can't use the "run" commmand. 2017-10-13 18:11:31 +01:00
anon.c
anon.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
args.c
args.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
argv0-symlink.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
argv0-symlink.exp Tighten remote check in gdb.base/argv0-symlink.exp 2017-10-12 19:16:54 +01:00
arithmet.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arrayidx.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arrayidx.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
asmlabel.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
asmlabel.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
assign.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async-shell.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async-shell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async.c
async.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-non-pgrp-leader.c Test attaching to a process that isn't a process group leader 2017-11-06 16:32:04 +00:00
attach-non-pgrp-leader.exp Test attaching to a process that isn't a process group leader 2017-11-06 16:32:04 +00:00
attach-pie-misread.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-misread.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-noexec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-noexec.exp [testsuite] Pass -pie in ldflags 2017-11-22 14:35:01 +00:00
attach-twice.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-twice.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-wait-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-wait-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach.c
attach.exp Remove references to gdb64 in the testsuite 2017-10-13 00:40:23 +01:00
attach2.c
auto-connect-native-target.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-connect-native-target.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load-script update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auxv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auxv.exp Make gdb.base/auvx.exp work with --target_board=native-extended-gdbserver 2017-10-12 23:06:15 +01:00
average.c
bad-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bar.c
batch-preserve-term-settings.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
batch-preserve-term-settings.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
baz.c
bfp-test.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bfp-test.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bg-execution-repeat.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bg-execution-repeat.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bigcore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bigcore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitfields.c
bitfields.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitfields2.c
bitfields2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitops.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-continue-ctrl-c.c Test breakpoint commands w/ "continue" + Ctrl-C 2017-11-16 18:44:44 +00:00
bp-cmds-continue-ctrl-c.exp Test breakpoint commands w/ "continue" + Ctrl-C 2017-11-16 18:44:44 +00:00
bp-cmds-execution-x-script.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-execution-x-script.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-execution-x-script.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-permanent.c gdb: testsuite: Add or1k l.nop instruction 2017-12-12 23:37:04 +09:00
bp-permanent.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
branch-to-self.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
branch-to-self.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-always.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-always.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-caller-line.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-caller-line.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-entry.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-fun-addr.exp gdb: Fix a few unstable test names 2017-03-08 12:46:44 +00:00
break-fun-addr1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-fun-addr2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-idempotent.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-idempotent.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-inline.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-inline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp.exp [testsuite] Pass -pie in ldflags 2017-11-22 14:35:01 +00:00
break-main-file-remove-fail.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-main-file-remove-fail.exp Stop assuming no-debug-info functions return int 2017-09-04 20:21:13 +01:00
break-on-linker-gcd-function.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-on-linker-gcd-function.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes.exp Stop assuming no-debug-info functions return int 2017-09-04 20:21:13 +01:00
break-unload-file.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-unload-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break.exp Fix regression in "commands" 2017-12-07 14:52:20 -07:00
break1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-in-ro-region.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-in-ro-region.exp Harden tests that deal with memory regions 2017-01-26 13:51:09 -06:00
breakpoint-shadow.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-shadow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-ar-st.c
call-ar-st.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-rt-st.c
call-rt-st.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-sc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-sc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-signal-resume.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-signals.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-strs.c
call-strs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callexit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callexit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callfuncs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callfuncs.exp Fix calling prototyped functions via function pointers 2017-09-04 20:21:13 +01:00
catch-fork-kill.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-fork-kill.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-fork-static.exp Run gdb.base/catch-fork-static.exp on remote target boards 2017-10-12 20:06:59 +01:00
catch-gdb-caused-signals.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-gdb-caused-signals.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load-so.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-fork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-fork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-siginfo-cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-siginfo-cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-syscall.c Set unknown_syscall differently on arm linux 2016-06-29 14:51:41 +01:00
catch-syscall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset-malloc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint-ns.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint.exp checkpoint.exp: Check for non-"target native" instead of isnative/is_remote 2017-10-12 19:54:57 +01:00
chng-syms.c
chng-syms.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
command-line-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
commands.exp gdb.base/commands.exp: Test loop_break and loop_continue in nested loops 2017-09-04 21:19:17 +02:00
compare-sections.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
compare-sections.exp Fix FAILs in compare-sections.exp 2017-09-26 09:57:18 +01:00
complete-empty.exp Fix completing an empty string 2017-11-25 00:20:31 +00:00
completion.exp Fix completing an empty string 2017-11-25 00:20:31 +00:00
complex.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
complex.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
comprdebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-eval-mode.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-eval-mode.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak-call-false.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak-call-false.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive-step-over.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive-step-over.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive.c
consecutive.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
constvars.c
constvars.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
continue-all-already-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
continue-all-already-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
coredump-filter.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
coredump-filter.exp Extend gdb.core/coredump-filter.exp to test dump-excluded-mappings. 2017-12-04 12:05:58 -05:00
corefile.exp Tweak gdb.base/corefile.exp is_remote check 2017-10-13 12:15:52 +01:00
coremaker.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-f.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-m.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-v.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cursal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cursal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cvexpr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cvexpr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
d10vovly.c
dbx.exp Remove references to gdb64 in the testsuite 2017-10-13 00:40:23 +01:00
dcache-line-read-error.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dcache-line-read-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
debug-expr.c
debug-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
default.exp Make language_def O(1) 2017-07-20 18:28:01 +01:00
define.exp Command abbreviation in define 2017-02-08 19:03:25 +01:00
del.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
del.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
detach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dfp-exprs.exp Clean up some DFP interfaces 2017-10-05 19:14:08 +02:00
dfp-test.c Fix type casts losing typedefs and reimplement "whatis" typedef stripping 2017-08-21 11:34:32 +01:00
dfp-test.exp Clean up some DFP interfaces 2017-10-05 19:14:08 +02:00
disabled-location.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disabled-location.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu-2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
display.c
display.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dmsym.c Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
dmsym.exp Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
dmsym_main.c Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
double-prompt-target-event-error.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
double-prompt-target-event-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-bp-same-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-bp-same-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-detach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-detach.exp Stop assuming no-debug-info functions return int 2017-09-04 20:21:13 +01:00
dprintf-next.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-next.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-non-stop.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-non-stop.exp Remove is_remote target check from gdb.base/dprintf-non-stop.exp 2017-10-12 19:33:06 +01:00
dprintf-pending.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-pending.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-pendshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso1.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso2.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.d update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dump.c
dump.exp gdb/testsuite: Add "get_endianness" convenience proc 2017-06-13 15:20:26 +02:00
dup-sect.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dup-sect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
duplicate-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
duplicate-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
echo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
empty_exe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ena-dis-br.exp Make breakpoint/location number parsing error output consistent 2017-11-07 11:07:19 +00:00
ending-run.c
ending-run.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum_cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum_cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enumval.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enumval.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
environ.exp Fix PR gdb/21954: make 'unset environment' work again 2017-08-15 13:49:18 -04:00
eu-strip-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eu-strip-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval-avoid-side-effects.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval-skip.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
examine-backward.c Fix spurious FAILs with examine-backward.exp 2017-03-20 18:55:39 +01:00
examine-backward.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exe-lock.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exec-invalid-sysroot.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execd-prog.c
execl-update-breakpoints.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execl-update-breakpoints.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execution-termios.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execution-termios.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exitsignal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs.exp Replace mail address with the URL in copyright header 2017-12-01 11:34:14 +00:00
exprs.c
exprs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fileio.c gdb.base/fileio.c: Fix several -Wmaybe-uninitialized warnings 2017-05-18 12:56:38 +01:00
fileio.exp gdb.base/fileio.c: Fix several -Wreturn-type warnings 2017-05-18 12:56:16 +01:00
filesym.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
filesym.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find-unmapped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find-unmapped.exp Make gdb.base/find-unmapped.exp pass on remote targets 2017-10-13 16:34:50 +01:00
find.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
finish.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsection.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsection.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsectshr.c
float.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
float.exp Expect prompt after no FPU warning 2017-05-18 16:31:40 +01:00
float128.c Target FP: Make use of MPFR if available 2017-11-22 13:53:43 +01:00
float128.exp Target FP: Make use of MPFR if available 2017-11-22 13:53:43 +01:00
floatn.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
floatn.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec-mode.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec-mode.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-fork.c
foll-fork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foo.c
fork-running-state.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fork-running-state.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fortran-sym-case.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fortran-sym-case.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
frame-args.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
frame-args.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
freebpcmd.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
freebpcmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullname.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullname.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand-func.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptrs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptrs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
funcargs.c
funcargs.exp gdb/testsuite: Add "get_endianness" convenience proc 2017-06-13 15:20:26 +02:00
gcore-buffer-overflow.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-buffer-overflow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-pie.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-pie.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1056.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1090.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1090.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1250.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1250.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1821.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1821.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11530.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11530.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11531.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11531.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb_history
gdbhistsize-history.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs-dwarf.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbinit-history.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbvars.c
gdbvars.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso-solib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso-solib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-debugdata.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-debugdata.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu_vector.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu_vector.exp Fix type casts losing typedefs and reimplement "whatis" typedef stripping 2017-08-21 11:34:32 +01:00
grbx.c
hashline1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hashline2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hashline3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-unmapped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-unmapped.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
help.exp PR gdb/21122: Fix documentation mistakes for breakpoint commands 2017-02-10 13:38:54 -03:00
history-duplicates.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hook-stop.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hook-stop.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
huge.c
huge.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ifelse.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-exec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-exec.exp Stop assuming no-debug-info functions return int 2017-09-04 20:21:13 +01:00
infcall-exec2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
inferior-died.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
inferior-died.exp Enable gdb.base/inferior-died.exp on is_remote target boards 2017-10-12 18:39:13 +01:00
infnan.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infnan.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-macros.c
info-macros.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-os.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-os.exp [testsuite] Pass pthreads in prepare_for_testing 2017-11-22 16:50:53 +00:00
info-proc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-program.exp Make environ.exp run on all platforms (and create info-program.exp) 2017-04-28 20:29:20 -04:00
info-shared-solib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared-solib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-target.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infoline.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infoline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
int-type.c
interact.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt-noterm.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt-noterm.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt.c
interrupt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-attach-pie.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-attach-pie.exp [testsuite] Pass -pie in ldflags 2017-11-22 14:35:01 +00:00
jit-dlmain.c
jit-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-protocol.h Add a test case for the jit-reader interface 2016-06-17 19:24:08 +01:00
jit-reader.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple-dl.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple-jit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-so.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jithost.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jithost.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jitreader.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jump.c
jump.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-after-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-after-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-detach-inferiors-cmd.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-detach-inferiors-cmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
killed-outside.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
killed-outside.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
label.c
label.exp Remove is_remote check in labels.exp 2017-10-12 23:14:09 +01:00
langs.exp Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] 2017-11-29 19:43:48 +00:00
langs0.c
langs1.c
langs1.f update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
langs2.c
langs2.cxx
ldbl_e308.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ldbl_e308.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
lineinc.c
lineinc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
list-ambiguous.exp Make "list ambiguous" show symbol names too 2017-09-20 16:21:26 +01:00
list-ambiguous0.c Fix "list ambiguous_variable" 2017-09-20 16:12:54 +01:00
list-ambiguous1.c Fix "list ambiguous_variable" 2017-09-20 16:12:54 +01:00
list.exp Clarify "list" output when specified lines are ambiguous 2017-09-04 16:49:29 +01:00
list0.c
list0.h
list1.c
logical.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
long-inferior-output.c Fix inferior deadlock with "target remote | CMD" 2017-10-19 16:00:21 +01:00
long-inferior-output.exp Fix inferior deadlock with "target remote | CMD" 2017-10-19 16:00:21 +01:00
long_long.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
long_long.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longest-types.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longest-types.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longjmp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longjmp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
m32r.ld
m32rovly.c
macscp.exp [testsuite] Pass -g3 to clang in gdb.base/macscp.exp 2017-11-23 15:31:13 +00:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp DWARF-5: .debug_names index consumer 2017-12-08 23:37:31 +00:00
max-value-size.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
max-value-size.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
memattr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
memattr.exp Fix racy output matching in gdb.base/memattr.exp 2017-11-09 22:45:39 +00:00
mips_pro.c
mips_pro.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
miscexprs.c
miscexprs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
morestack.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
morestack.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
moribund-step.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-forks.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-forks.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-line-starts-subshell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp3.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-echo.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-echo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-pending-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-pending-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui.exp Fix racy test in gdb.base/new-ui.exp 2017-10-24 23:22:56 +01:00
nextoverexit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nextoverexit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nodebug.c Stop assuming no-debug-info variables have type int 2017-09-04 20:21:15 +01:00
nodebug.exp gdb.base/nodebug.exp: Rename called functions 2017-09-14 18:32:00 +01:00
nofield.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nofield.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-finish.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-finish.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-return.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-return.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
normal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nostdlib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nostdlib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
offsets.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
offsets.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque0.c
opaque1.c
overlays.c
overlays.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovlymgr.c
ovlymgr.h
page.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-after-ctrl-c-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-after-ctrl-c-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-bg-execution.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-bg-execution.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-execution-startup.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-execution-startup.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-inferior-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-inferior-exit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pc-fp.c
pc-fp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pending.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pending.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pendshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
permissions.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pi.txt
pie-execl.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pie-execl.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pointers.c
pointers.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11022.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11022.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-lib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-lib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-main.c Fix gdb.base/print-file-var-main.c value check logic 2017-10-09 12:33:31 +01:00
print-file-var.exp Fix gdb.base/print-file-var-main.c value check logic 2017-10-09 12:33:31 +01:00
print-symbol-loading-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-symbol-loading-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-symbol-loading.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
printcmds.c
printcmds.exp Fix two regressions in scalar printing 2017-08-14 10:14:05 -06:00
prologue-include.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue-include.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue-include.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psymtab.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptr-typedef.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype-offsets.cc Implement pahole-like 'ptype /o' option 2017-12-15 15:07:42 -05:00
ptype-offsets.exp Implement pahole-like 'ptype /o' option 2017-12-15 15:07:42 -05:00
ptype.c
ptype.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype1.c
quit-live.c Add several "quit with live inferior" tests 2017-10-17 14:58:54 +01:00
quit-live.exp Add several "quit with live inferior" tests 2017-10-17 14:58:54 +01:00
quit.exp Fix 'gdb.base/quit.exp hangs forever' if the test fails 2017-10-20 15:33:57 +01:00
radix.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
random-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
random-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
randomize.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
randomize.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
range-stepping.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
range-stepping.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.inputrc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readnever.c Add support for the readnever concept 2017-12-01 21:28:31 -05:00
readnever.exp Add support for the readnever concept 2017-12-01 21:28:31 -05:00
realname-expand-real.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
realname-expand.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
realname-expand.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recpar.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recpar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recurse.c
recurse.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relational.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relativedebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relativedebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relocate.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relocate.exp Make '{add-,}symbol-file' not care about the position of command line arguments 2017-12-01 17:01:24 -05:00
remote.c
remote.exp Fix is_remote check in gdb.base/remote.exp 2017-10-13 11:20:37 +01:00
remotetimeout.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
reread-readsym.c Fix PR 21337: segfault when re-reading symbols. 2017-06-28 02:54:22 +01:00
reread-readsym.exp Fix PR 21337: segfault when re-reading symbols. 2017-06-28 02:54:22 +01:00
reread.exp Catch exceptions thrown from gdbarch_skip_prologue 2017-07-25 11:38:50 +01:00
reread1.c
reread2.c
restore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
restore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return2.c
return2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run-after-attach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run-after-attach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run.c
save-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
save-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
savedregs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
savedregs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
scope.exp Eliminate is_remote check in gdb.base/scope.exp 2017-10-13 01:27:18 +01:00
scope0.c
scope1.c
sect-cmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
segv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep-proc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepsymtab.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepsymtab.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
server-del-break.c fix "server" command prefix handling (unexpected confirmation queries) 2017-12-12 22:23:19 -05:00
server-del-break.exp fix "server" command prefix handling (unexpected confirmation queries) 2017-12-12 22:23:19 -05:00
set-cwd.c Implement "set cwd" command on GDB 2017-10-04 01:59:30 -04:00
set-cwd.exp Extend "set cwd" to work on gdbserver 2017-10-04 02:01:45 -04:00
set-inferior-tty.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
set-inferior-tty.exp Add alias command to cmd_list_element 2017-05-17 14:22:35 +01:00
set-lang-auto.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
set-noassign.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
setshow.c
setshow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
setvar.c
setvar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
share-env-with-gdbserver.c Implement the ability to set/unset environment variables to GDBserver when starting the inferior 2017-08-31 17:22:10 -04:00
share-env-with-gdbserver.exp Implement the ability to set/unset environment variables to GDBserver when starting the inferior 2017-08-31 17:22:10 -04:00
shell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shlib-call.exp Eliminate is_remote check in gdb.base/shlib-call.exp 2017-10-13 10:22:09 +01:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigaltstack.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigaltstack.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigbpt.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigbpt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigchld.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigchld.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-obj.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-obj.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-thread.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-thread.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals-state-child.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals-state-child.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals.c
signals.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signest.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signest.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signull.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signull.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigrepeat.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigrepeat.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigstep.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigstep.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sizeof.c Run gdb.base/sizeof.exp with board having gdb,noinferiorio 2015-12-03 17:12:41 +00:00
sizeof.exp Cast char constant to int in sizeof.exp 2017-09-06 11:11:03 -06:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
so-disc-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
so-impl-ld.c
so-impl-ld.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-corrupted.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-disc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-disc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display.exp Stop assuming no-debug-info variables have type int 2017-09-04 20:21:15 +01:00
solib-nodir.exp Make gdb.base/solib-nodir.exp work with --target_board=native-extended-gdbserver 2017-10-13 10:29:30 +01:00
solib-overlap-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-overlap-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-overlap.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search-lib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search-lib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-weak.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-weak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib1.c Remove HP-UX references fom testsuite 2015-12-21 12:51:54 -05:00
source-dir.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-error.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-nofile.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-test.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stack-checking.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stack-checking.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stale-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stale-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stap-probe.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stap-probe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
start.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
start.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
starti.c Add a 'starti' command. 2017-09-19 12:15:35 -07:00
starti.exp Fix gdb.base/starti.exp racy test 2017-11-16 11:57:01 +00:00
startup-with-shell.c Implement proper "startup-with-shell" support on gdbserver 2017-06-07 19:56:09 -04:00
startup-with-shell.exp Fix unstable test names in gdb.base/startup-with-shell.exp 2017-10-24 10:52:09 +01:00
statistics.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-break.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-break.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-bt.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-bt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.inp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-clone.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-exit.exp Avoid unstable test message in gdb.base/step-over-exit.exp 2017-03-08 22:05:36 +00:00
step-over-fork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-no-symbols.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-syscall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-resume-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-resume-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-sw-breakpoint-adjust-pc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-sw-breakpoint-adjust-pc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-symless.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-symless.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-test.c
step-test.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
store.c
store.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs2.c
structs2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs3.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
subst.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sum.c
sym-file-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-loader.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-loader.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symbol-alias.c Handle function aliases better (PR gdb/19487, errno printing) 2017-08-21 11:34:32 +01:00
symbol-alias.exp Handle function aliases better (PR gdb/19487, errno printing) 2017-08-21 11:34:32 +01:00
symbol-alias2.c Handle function aliases better (PR gdb/19487, errno printing) 2017-08-21 11:34:32 +01:00
symbol-without-target_section.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symbol-without-target_section.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order-shlib-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
term.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
term.exp Fix gdb.base/term.exp on non-"target native" boards 2017-10-13 13:41:44 +01:00
testenv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
testenv.exp Fix gdb.base/testenv.exp against --target_board=native-extended-gdbserver 2017-10-13 17:50:19 +01:00
trace-commands.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
twice.c
twice.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ui-redirect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unload.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unload.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unloadshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unloadshr2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
until-nodebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
until.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unwindonsignal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unwindonsignal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-db-attach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-db-attach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-disp-step.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-disp-step.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
value-double-free.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
value-double-free.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
varargs.c
varargs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vdso-warning.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vdso-warning.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vforked-prog.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-datatypes.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-datatypes.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-ptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-sideeffect.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-sideeffect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub-define.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
volatile.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-bitfields.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-bitfields.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond-infcall.exp gdb.base/watch-cond-infcall.exp: Don't run if target doesn't support infcalls 2017-05-30 11:24:52 +02:00
watch-cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-non-mem.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-non-mem.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-read.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-read.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-vfork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch_thread_num.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch_thread_num.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone-stripped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-delete.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-delete.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw-hit-once.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw-hit-once.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-reuse-slot.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-reuse-slot.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-stops-at-right-insn.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-stops-at-right-insn.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint.c
watchpoint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoints.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoints.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wchar.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wchar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
weaklib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
weaklib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis-exp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis-ptype-typedefs.c Fix gdb.base/whatis-ptype-typedefs.exp on 32-bit archs 2017-11-20 23:03:17 +00:00
whatis-ptype-typedefs.exp Fix gdb.base/whatis-ptype-typedefs.exp on 32-bit archs 2017-11-20 23:03:17 +00:00
whatis.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full-opaque.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00