binutils-gdb/gdb/testsuite/gdb.dwarf2
Andreas Arnez 7346ef59bb Big-endian targets: Don't ignore offset into DW_OP_implicit_value
When a variable's location is expressed as DW_OP_implicit_value, but the
given value is longer than needed, which bytes should be used?  GDB's
current logic was introduced with a patch from 2011 and uses the "least
significant" bytes:

  https://sourceware.org/ml/gdb-patches/2011-08/msg00123.html

Now consider a sub-value from such a location at a given offset, accessed
through DW_OP_implicit_pointer.  Which bytes should be used for that?  The
patch above *always* uses the last bytes on big-endian targets, ignoring
the offset.

E.g., given the code snippet

  const char foo[] = "Hello, world!";
  const char *a = &foo[0];
  const char *b = &foo[7];

assume that `foo' is described as DW_OP_implicit_value and `a' and `b'
each as DW_OP_implicit_pointer into that value.  Then with current GDB
`*a' and `*b' yield the same result -- the string's zero terminator.

This patch basically reverts the portion of the patch above that deals
with DW_OP_implicit_value.  This fixes the offset handling and also goes
back to dropping the last instead of the first bytes on big-endian targets
if the implicit value is longer than needed.  The latter aspect of the
change probably doesn't matter for actual programs, but simplifies the
logic.

The patch also cleans up the original code a bit and adds appropriate test
cases.

gdb/testsuite/ChangeLog:

	* gdb.dwarf2/dw2-op-stack-value.exp: Adjust expected result of
	taking a 2-byte value out of a 4-byte DWARF implicit value on
	big-endian targets.
	* gdb.dwarf2/nonvar-access.exp: Add more comments to existing
	logic.  Add test cases for DW_OP_implicit.

gdb/ChangeLog:

	* dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
	DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
	targets.  And if the implicit value is longer than needed, extract
	the first bytes instead of the "least significant" ones.
2017-02-01 16:59:00 +01:00
..
arr-stride.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arr-stride.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arr-subrange.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arr-subrange.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
atomic-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
atomic.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bad-regnum.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bad-regnum.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitfield-parent-optimized-out.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callframecfa.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callframecfa.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
clztest.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
clztest.c
clztest.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
comp-unit-lang.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
comp-unit-lang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
corrupt.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
corrupt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
count.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
data-loc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
data-loc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dup-psym.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dup-psym.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc-hello-dbg.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc-hello.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc-world-dbg.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc-world.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-abs-hi-pc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ada-ffffffff.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ada-ffffffff.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-anon-mptr.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-anon-mptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-anonymous-func.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-anonymous-func.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-mips-linkage-name.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-mips-linkage-name.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-parameter-type.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-parameter-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-unresolved.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-bad-unresolved.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-basic.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-basic.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-canonicalize-type.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-canonicalize-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-case-insensitive-debug.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-case-insensitive.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-case-insensitive.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-common-block.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-common-block.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-compdir-oldgcc.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-compdir-oldgcc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-compressed.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-compressed.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-const.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-const.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-cp-infcall-ref-static-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-cp-infcall-ref-static.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-cp-infcall-ref-static.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-cu-size.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-cu-size.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dir-file-name.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dir-file-name.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dos-drive.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dos-drive.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-double-set-die-type.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-double-set-die-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dummy-cu.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dummy-cu.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dup-frame.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dup-frame.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-dup-frame.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-empty-namespace.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-empty-namespace.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-empty-pc-range.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-empty-pc-range.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-entry-value-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-entry-value.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-entry-value.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-error.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-error.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-filename.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-filename.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-icc-opaque.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-icc-opaque.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-icycle.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-icycle.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-icycle.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ifort-parameter.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ifort-parameter.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inheritance.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inheritance.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inline-break.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inline-break.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inline-param-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inline-param.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-inline-param.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-intercu.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-intercu.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-intermix.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-intermix.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-lexical-block-bare.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-linkage-name-trust-main.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-linkage-name-trust.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-linkage-name-trust.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-minsym-in-cu.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-minsym-in-cu.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-modula2-self-type.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-modula2-self-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-namespaceless-anonymous.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-namespaceless-anonymous.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-noloc-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-noloc.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-noloc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-objfile-overlap-inner.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-objfile-overlap-outer.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-objfile-overlap.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-call.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-call.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-out-param.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-out-param.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-stack-value.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-op-stack-value.exp Big-endian targets: Don't ignore offset into DW_OP_implicit_value 2017-02-01 16:59:00 +01:00
dw2-opt-structptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-opt-structptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-param-error-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-param-error.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-param-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-producer.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-producer.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges-base.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges-base.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ranges3.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ref-missing-frame-func.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ref-missing-frame-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ref-missing-frame.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-ref-missing-frame.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-reg-undefined.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-reg-undefined.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-reg-undefined.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-regno-invalid.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-restore.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-restore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-restrict.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-restrict.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-restrict.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-simple-locdesc.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-simple-locdesc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-single-line-discriminators.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-single-line-discriminators.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-single-line-discriminators.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-skip-prologue.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-skip-prologue.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-skip-prologue.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-stack-boundary.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-stack-boundary.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-strp.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-strp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-undefined-ret-addr.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-undefined-ret-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-undefined-ret-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-unresolved-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-unresolved.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-unresolved.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-var-zero-addr.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw2-var-zero-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw4-sig-type-unused.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw4-sig-type-unused.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw4-sig-types-b.cc
dw4-sig-types.cc
dw4-sig-types.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dw4-sig-types.h
dwp-sepdebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dwp-sepdebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dwp-symlink.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dwp-symlink.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dwz.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dwzbuildid.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dynarr-ptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dynarr-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
file1.txt
fission-base.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-base.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-base.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-loclists-pie.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-loclists-pie.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-loclists.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-loclists.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-mix.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-mix.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-mix.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-mix2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-reread.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fission-reread.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-index.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptr-64bit.exp Use dwarf assembler in gdb.dwarf2/implptr-64bit.exp 2017-01-25 16:24:44 +00:00
implptr-optimized-out.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptr.S
implptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptrconst.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptrconst.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implptrpiece.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-array.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-array.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-const.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-global.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-global.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-struct.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
implref-struct.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mac-fileno.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mac-fileno.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
main-subprogram.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
main-subprogram.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-ptr-forwardref.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-ptr-forwardref.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
method-ptr.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
method-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
missing-sig-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nonvar-access.exp Big-endian targets: Don't ignore offset into DW_OP_implicit_value 2017-02-01 16:59:00 +01:00
nostaticblock.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque-type-lookup-2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque-type-lookup.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque-type-lookup.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces-optimized-out.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces-optimized-out.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces-optimized-out.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pieces.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr10770.c
pr10770.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11465.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11465.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr13961.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr13961.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
staticvirtual.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
subrange.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-producer.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
trace-crash.S
trace-crash.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typeddwarf-amd64.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typeddwarf.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typeddwarf.c
typeddwarf.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valop.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valop.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-notconst.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-notconst.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-notconst2.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-notconst2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00