binutils-gdb/gdb/testsuite/gdb.arch
Kevin Buettner f01dcfd9a7 testsuite: Define and use gdb_target_symbol_prefix_flags_asm.
Some of the source code for the test cases in the GDB testsuite
reside in .S files containing assembly code.  These files typically
define a symbol - such as main - which may, depending on the target,
require a prefix such as underscore.

For example, gdb.dwarf2/dw-compdir-oldgcc.S defines the symbol main:

main:	.globl main

Some targets, such as rx-elf, require main to have an underscore
prefix.  (If it doesn't, a linker error results due to not being able
to find _main required by crt0.o.) So, instead, the above should look
like this for rx-elf and other targets with this same requirement:

_main:	.globl	_main

This patch defines a new tcl proc in lib/gdb named
gdb_target_symbol_prefix_flags_asm.  This proc returns a string
which will - assuming everything else is wired up correctly - cause
-DSYMBOL_PREFIX=_ to be passed on the command line to the compiler.

The test cases are augmented with a macro definition for SYMBOL
as follows:

    #define CONCAT1(a, b) CONCAT2(a, b)
    #define CONCAT2(a, b) a ## b

    #ifdef SYMBOL_PREFIX
    # define SYMBOL(str)     CONCAT1(SYMBOL_PREFIX, str)
    #else
    # define SYMBOL(str)     str
    #endif

Symbols, such as main shown in the example earlier are then wrapped
with SYMBOL like this:

SYMBOL(main):	.globl SYMBOL(main)

The net effect will be to add a prefix for those targets which need
it and add no prefix for those targets which do not.

It should be noted that there was already a proc in lib/gdb.exp
called gdb_target_symbol_prefix_flags.  It still exists, but has
been significantly rewritten.  (There is only one small difference
between the two versions.)

That proc used to explicitly list targets which were known to
require an underscore prefix.  This is no longer done; the recently
added proc, gdb_target_symbol_prefix, is now invoked to dynamically
discover whether or not a prefix is required for that particular
target.

The difference between gdb_target_symbol_prefix_flags_asm
and gdb_target_symbol_prefix_flags is that the former returns
a bare prefix while the latter returns the prefix enclosed in
double quotes.  I.e. assuming that the discovered prefix is
underscore, gdb_target_symbol_prefix_flags_asm returns:

    additional_flags=-DSYMBOL_PREFIX=_

while gdb_target_symbol_prefix_flags returns:

    additional_flags=-DSYMBOL_PREFIX="_"

The double-quoted version is not suitable for using with .S files
containing assembly code; there is no way to strip the double quotes
using C preprocessor constructs.

It would be possible to use the bare (non double quoted) version in
C source code.  However, the supporting macros become more complicated
and therefore more difficult to maintain.

gdb/testsuite/ChangeLog:

	* lib/gdb (gdb_target_symbol_prefix_flags_asm): New proc.
	(gdb_target_symbol_prefix_flags): Define in terms of _asm
	version.
	* gdb.arch/i386-float.exp, gdb.arch/i386-permbkpt.exp,
	gdb.dwarf2/dw2-canonicalize-type.exp,
	gdb.dwarf2/dw2-compdir-oldgcc.exp, gdb.dwarf2/dw2-minsym-in-cu.exp,
	gdb.dwarf2/dw2-op-stack-value.exp, gdb.dwarf2/dw2-unresolved.exp,
	gdb.dwarf2/fission-reread.exp, gdb.dwarf2/pr13961.exp: Use flags
	provided by gdb_target_symbol_prefix_flags_asm.
	* gdb.dwarf2/dw2-canonicalize-type.S, gdb.dwarf2/dw2-compdir-oldgcc.S,
	testsuite/gdb.dwarf2/dw2-minsym-in-cu.S,
	testsuite/gdb.dwarf2/dw2-unresolved-main.c,
	testsuite/gdb.dwarf2/dw2-unresolved.S, gdb.dwarf2/fission-reread.S,
	gdb.dwarf2/pr13961.S: Define and use SYMBOL macro (and supporting
	macros where needed).  Use this macro for symbols which require
	the prefix provided by SYMBOL_PREFIX.
2015-11-07 11:03:49 -07:00
..
Makefile.in Add AVX512 registers support to GDB and GDBserver. 2014-04-24 16:30:03 +02:00
aarch64-atomic-inst.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
aarch64-atomic-inst.exp New proc is_aarch64_target 2015-07-07 16:58:20 +01:00
aarch64-fp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
aarch64-fp.exp New proc is_aarch64_target 2015-07-07 16:58:20 +01:00
alpha-step.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
alpha-step.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
altivec-abi.c
altivec-abi.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
altivec-regs.c
altivec-regs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-byte.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-disp-step.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-disp-step.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-dword.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-inline.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-inline.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-inline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-param.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-param.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-param.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-paramref.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-paramref.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value-paramref.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-entry-value.s Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-i386-address.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-i386-address.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-invalid-stack-middle.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-invalid-stack-middle.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-invalid-stack-middle.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-invalid-stack-top.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-invalid-stack-top.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-optimout-repeat.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-optimout-repeat.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-optimout-repeat.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-prologue-skip.S Do not skip prologue for asm (.S) files 2015-06-26 15:11:14 +02:00
amd64-prologue-skip.exp Do not skip prologue for asm (.S) files 2015-06-26 15:11:14 +02:00
amd64-prologue-xmm.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-prologue-xmm.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-prologue-xmm.s Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-pseudo.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-optional-prefix.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-optional-prefix.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-special-operands.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-three-arg-disp.S Fix for PR tdep/16397: SystemTap SDT probe support for x86 doesn't work with "triplet operands" 2014-02-20 18:49:09 -03:00
amd64-stap-three-arg-disp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-triplet.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-triplet.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-wrong-subexp.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-stap-wrong-subexp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-cxx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-cxx1.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-cxx1.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-cxx2.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-cxx2.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-noret.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-noret.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-noret.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-ret.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-ret.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-ret.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
amd64-tailcall-self.S PR symtab/18392 2015-06-01 14:02:34 +02:00
amd64-tailcall-self.c PR symtab/18392 2015-06-01 14:02:34 +02:00
amd64-tailcall-self.exp PR symtab/18392 2015-06-01 14:02:34 +02:00
amd64-word.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arm-bl-branch-dest.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arm-bl-branch-dest.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
arm-disp-step.S [arm] Fix displaced stepping for thumb alu reg instruction 2015-04-10 10:33:01 +01:00
arm-disp-step.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
avr-flash-qualifier.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
avr-flash-qualifier.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cordic.ko.bz2 SEGV in ppc64_elf_get_synthetic_symtab reading a separate debug file 2015-02-26 14:08:01 +01:00
cordic.ko.debug.bz2 SEGV in ppc64_elf_get_synthetic_symtab reading a separate debug file 2015-02-26 14:08:01 +01:00
disp-step-insn-reloc.exp New test case gdb.arch/disp-step-insn-reloc.exp 2015-10-12 11:28:38 +01:00
e500-abi.c
e500-abi.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
e500-prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
e500-prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
e500-regs.c
e500-regs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ftrace-insn-reloc.exp Add a gdb.trace test for instruction relocation 2015-09-21 15:01:05 +01:00
gdb1291.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1291.s Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1431.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1431.s Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1558.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1558.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-avx.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-avx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-avx512.c Fix MPX and AVX512 tests for path changes. 2015-06-10 09:58:05 +02:00
i386-avx512.exp Fix MPX and AVX512 tests for path changes. 2015-06-10 09:58:05 +02:00
i386-biarch-core.core.bz2 Testsuite patch for: i386: Fix internal error when prstatus in core file is too big 2015-02-21 15:24:20 +01:00
i386-biarch-core.exp Fix gdb.arch/i386-biarch-core.exp FAIL on i386. 2015-07-16 18:01:22 +02:00
i386-bp_permanent.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
i386-bp_permanent.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-byte.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-cfi-notcurrent.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-cfi-notcurrent.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-disp-step.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-disp-step.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-dr3-watch.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-dr3-watch.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-float.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-float.exp testsuite: Define and use gdb_target_symbol_prefix_flags_asm. 2015-11-07 11:03:49 -07:00
i386-gnu-cfi-asm.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-gnu-cfi.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-gnu-cfi.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-mpx-map.c Fix non stopping breakpoint on newer compilers. 2015-11-04 11:09:03 +01:00
i386-mpx-map.exp Changing compiler flags for MPX tests. 2015-11-04 11:09:02 +01:00
i386-mpx.c Obvious indentation fixes on test sample and test file for MPX registers. 2015-06-10 09:58:05 +02:00
i386-mpx.exp Changing compiler flags for MPX tests. 2015-11-04 11:09:02 +01:00
i386-permbkpt.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-permbkpt.exp testsuite: Define and use gdb_target_symbol_prefix_flags_asm. 2015-11-07 11:03:49 -07:00
i386-prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-pseudo.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-size-overlap.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-size-overlap.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-size.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-size.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-sse-stack-align.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-sse-stack-align.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-sse-stack-align.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-sse.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-sse.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-stap-eval-lang-ada.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-stap-eval-lang-ada.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-stap-eval-lang-ada.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-unwind.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-unwind.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
i386-word.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ia64-breakpoint-shadow.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ia64-breakpoint-shadow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
insn-reloc.c More tests in gdb.arch/insn-reloc.c 2015-10-12 11:28:38 +01:00
iwmmxt-regs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
iwmmxt-regs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips-octeon-bbit.c
mips-octeon-bbit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-inmain.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-sin.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-sinfrob.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-sinfrob16.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-sinmain.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks-sinmips16.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips16-thunks.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pa-nullify.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pa-nullify.s
pa64-nullify.s
powerpc-aix-prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-aix-prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-d128-regs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-d128-regs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-power.exp Fix rfebb gdb test cases. 2015-06-23 13:33:05 -05:00
powerpc-power.s Fix rfebb gdb test cases. 2015-06-23 13:33:05 -05:00
powerpc-prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-stackless.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
powerpc-stackless.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc-dfp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc-dfp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc-fp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc-fp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc64-atomic-inst.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ppc64-atomic-inst.exp PPC64: Fix gdb.arch/ppc64-atomic-inst.exp with displaced stepping 2015-08-07 17:26:21 +01:00
ppc64-symtab-cordic.exp Restrict gdb.arch/ppc64-symtab-cordic.exp to ppc64 targets. 2015-07-30 12:06:29 -07:00
s390-multiarch.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
s390-multiarch.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
s390-tdbregs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
s390-tdbregs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
s390-vregs.S s390-vregs.exp: Avoid compile errors with older GCCs and on 31-bit targets 2015-04-16 13:03:48 +02:00
s390-vregs.exp s390-vregs.exp: Avoid compile errors with older GCCs and on 31-bit targets 2015-04-16 13:03:48 +02:00
sparc-sysstep.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sparc-sysstep.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu-info.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu-info.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu-ls.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu-ls.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
thumb-bx-pc.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
thumb-bx-pc.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
thumb-prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
thumb-prologue.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
thumb-singlestep.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
thumb-singlestep.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
thumb2-it.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
thumb2-it.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vsx-regs.c
vsx-regs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00