binutils-gdb/gdb/testsuite/gdb.cp
Maciej W. Rozycki 621661e3fa Correct invalid assumptions made by (mostly) DWARF-2 tests
Address issues triggered by the MIPS ISA bit handling change, usually in
tests that make artificial DWARF-2 records:

* gdb.cp/expand-psymtabs-cxx.exp -- this test is debugging an object file
  and assuming addresses will be 0; with the ISA bit set code addresses
  are 1 instead:

(gdb) PASS: gdb.cp/expand-psymtabs-cxx.exp: set language c++
p 'method(long)'
$1 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: before expand
p method
$2 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: force expand
p 'method(long)'
$3 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: after expand

  Fix by matching any hex number, there's no value AFAICT for the test
  in matching 0 exactly, and I suppose the method's offset within
  section can be non-zero for some other reasons on other targets too.

* gdb.cp/nsalias.exp -- this assumes instructions can be aligned
  arbitrarily and places code labels at odd addreses, setting the ISA
  bit and wreaking havoc:

(gdb) PASS: gdb.cp/nsalias.exp: print outer::inner::innermost::x
list outer::inner::innermost::foo
Function "outer::inner::innermost::foo" not defined.
(gdb) FAIL: gdb.cp/nsalias.exp: list outer::inner::innermost::foo
break *outer::inner::innermost::foo
No symbol "foo" in namespace "outer::inner::innermost".
(gdb) FAIL: gdb.cp/nsalias.exp: setting breakpoint at
*outer::inner::innermost::foo
delete $bpnum
No breakpoint number 6.
(gdb) FAIL: gdb.cp/nsalias.exp: (outer::inner::innermost): delete $bpnum

  -- etc., etc...  Fix by aligning labels to 4; required by many
  processors.

* gdb.dwarf2/dw2-canonicalize-type.exp, gdb.dwarf2/dw2-empty-pc-range.exp,
  gdb.dwarf2/pr11465.exp -- these assume an instruction and consequently
  a function can take as little as 1 byte, which makes it impossible to
  look up a code symbol by an address with the ISA bit set as the
  address is already beyond the end of the function:

(gdb) ptype f
No symbol "f" in current context.
(gdb) FAIL: gdb.dwarf2/dw2-canonicalize-type.exp: ptype f

(gdb) PASS: gdb.dwarf2/dw2-empty-pc-range.exp: empty range before CU load
ptype realrange
No symbol "realrange" in current context.
(gdb) FAIL: gdb.dwarf2/dw2-empty-pc-range.exp: valid range after CU load

(gdb) p N::c.C
Cannot take address of method C.
(gdb) FAIL: gdb.dwarf2/pr11465.exp: p N::c.C

  -- fix by increasing the size of the function to 4 (perhaps code in
  gdb/mips-tdep.c could look up code symbols up to twice, with and
  failing that without the ISA bit set, but it seems wrong to me to
  implement specific handling for invalid code just to satisfy test
  cases that assume too much about the target).

* gdb.dwarf2/dw2-case-insensitive.exp -- an artificial code label is
  created, but does not work because data (a `.align' pseudo-op in this
  case) follows and as a result the label has no MIPS16 or microMIPS
  annotation in the symbol table:

(gdb) PASS: gdb.dwarf2/dw2-case-insensitive.exp: set case-sensitive off
info functions fUnC_lang
All functions matching regular expression "fUnC_lang":

File file1.txt:
foo FUNC_lang(void);

Non-debugging symbols:
0x004006e0  FUNC_lang_start
(gdb) FAIL: gdb.dwarf2/dw2-case-insensitive.exp: regexp case-sensitive off

  -- fix by adding a `.insn' pseudo-op on MIPS targets; the pseudo-op
  marks data as instructions.

* gdb.dwarf2/dw2-stack-boundary.exp -- the test case enables complaints
  and assumes none will be issued beyond ones explicitly arranged by the
  test case, however overlapping sections are noticed while minimal
  symbols are looked up by `mips_adjust_dwarf2_addr' in DWARF-2 record
  processing:

(gdb) set complaints 100
(gdb) PASS: gdb.dwarf2/dw2-stack-boundary.exp: set complaints 100
file ./dw2-stack-boundary
Reading symbols from ./dw2-stack-boundary...location description stack
underflow...location description stack overflow...unexpected overlap
between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*COM*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...unexpected overlap between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*UND*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...unexpected overlap between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*ABS*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...done.

(gdb) FAIL: gdb.dwarf2/dw2-stack-boundary.exp: check partial symtab errors

  -- fix by ignoring any extra noise as long as what we look for is
  found.

	* gdb.cp/expand-psymtabs-cxx.exp: Accept any address of
	`method(long)', not just 0x0.
	* gdb.cp/nsalias.exp: Align code labels to 4.
	* gdb.dwarf2/dw2-canonicalize-type.S (main): Expand to 4-bytes.
	* gdb.dwarf2/dw2-empty-pc-range.S (main): Likewise.
	* gdb.dwarf2/pr11465.S (_ZN1N1cE): Likewise.
	* gdb.dwarf2/dw2-case-insensitive.c (START_INSNS): New macro.
	(cu_text_start, FUNC_lang_start): Use `START_INSNS'.
	* gdb.dwarf2/dw2-stack-boundary.exp: Accept noise in complaints.
2014-12-04 00:06:10 +00:00
..
Makefile.in
abstract-origin.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
abstract-origin.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ambiguous.cc
ambiguous.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
annota2.cc
annota2.exp PR breakpoints/7143 - Watchpoint does not trigger when first set 2014-03-20 13:41:08 +00:00
annota3.cc
annota3.exp PR breakpoints/7143 - Watchpoint does not trigger when first set 2014-03-20 13:41:08 +00:00
anon-ns.cc PR symtab/17602 2014-12-02 16:40:38 -08:00
anon-ns.exp PR symtab/17602 2014-12-02 16:40:38 -08:00
anon-ns2.cc PR symtab/17602 2014-12-02 16:40:38 -08:00
anon-struct.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
anon-struct.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
anon-union.cc
anon-union.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arg-reference.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arg-reference.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
baseenum.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
baseenum.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bool.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bool.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
breakpoint.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
breakpoint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bs15503.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bs15503.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-c-1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-c.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-c.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
casts.cc
casts.exp Set print symbol off in some tests 2014-08-15 07:55:16 +08:00
chained-calls.cc Enable chained function calls in C++ expressions. 2014-11-28 16:01:16 -08:00
chained-calls.exp Enable chained function calls in C++ expressions. 2014-11-28 16:01:16 -08:00
class2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
class2.exp Set print symbol off in some tests 2014-08-15 07:55:16 +08:00
classes.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
classes.exp implement support for "enum class" 2014-04-14 11:42:18 -06:00
cmpd-minsyms.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cmpd-minsyms.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
converts.cc
converts.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cp-relocate.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cp-relocate.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cpcompletion.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cpexprs.cc Adjust start-of-function braces to be compatible with Clang 2014-04-24 13:10:41 -07:00
cpexprs.exp Adjust start-of-function braces to be compatible with Clang 2014-04-24 13:10:41 -07:00
cplabel.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cplabel.exp XFAIL under Clang tests using labels 2014-04-24 20:20:46 -07:00
cplusfuncs.cc
cplusfuncs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cpsizeof.cc Fix c++/16675 -- sizeof reference type should give the size of 2014-04-11 14:17:17 -07:00
cpsizeof.exp Fix c++/16675 -- sizeof reference type should give the size of 2014-04-11 14:17:17 -07:00
ctti.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cttiadd.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cttiadd1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cttiadd2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cttiadd3.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
debug-expr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
demangle.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
derivation.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
derivation.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
derivation2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
destrprint.cc
destrprint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dispcxx.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dispcxx.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enum-class.cc implement support for "enum class" 2014-04-14 11:42:18 -06:00
enum-class.exp implement support for "enum class" 2014-04-14 11:42:18 -06:00
exception.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exception.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exceptprint.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exceptprint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs-cxx.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs-cxx.exp Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
expand-sals.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-sals.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
extern-c.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
extern-c.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
filename.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
filename.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
formatted-ref.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
formatted-ref.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fpointer.cc
fpointer.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1355.cc
gdb1355.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2384-base.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2384-base.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2384.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2384.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2495.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb2495.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hang.H
hang.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hang1.cc
hang2.cc
hang3.cc
impl-this.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
impl-this.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
includefile Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infcall-dlopen-lib.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infcall-dlopen.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infcall-dlopen.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
inherit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
koenig.cc
koenig.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
local.cc
local.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
m-data.cc
m-data.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
m-static.cc
m-static.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
m-static.h
m-static1.cc
maint.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mb-ctor.cc
mb-ctor.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mb-inline.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
mb-inline.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mb-inline1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mb-inline2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mb-templates.cc
mb-templates.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
member-name.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
member-name.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
member-ptr.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
member-ptr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
meth-typedefs.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
meth-typedefs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
method.cc
method.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
method2.cc
method2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
minsym-fallback-main.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
minsym-fallback.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
minsym-fallback.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
minsym-fallback.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
misc.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
misc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
namelessclass.S PR c++/16597 2014-04-16 14:12:22 -07:00
namelessclass.cc PR c++/16597 2014-04-16 14:12:22 -07:00
namelessclass.exp PR c++/16597 2014-04-16 14:12:22 -07:00
namespace-enum-main.cc
namespace-enum.cc
namespace-enum.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
namespace-nested-import.cc
namespace-nested-import.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
namespace.cc
namespace.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
namespace1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nextoverthrow.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nextoverthrow.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
no-dmgl-verbose.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
no-dmgl-verbose.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
non-trivial-retval.cc Guard a call to TYPE_TARGET_TYPE in gnuv3_pass_by_reference. 2014-10-24 05:45:06 -07:00
non-trivial-retval.exp Guard a call to TYPE_TARGET_TYPE in gnuv3_pass_by_reference. 2014-10-24 05:45:06 -07:00
noparam.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
noparam.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsalias.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsalias.exp Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
nsdecl.cc
nsdecl.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsimport.cc
nsimport.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsnested.cc
nsnested.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsnoimports.cc
nsnoimports.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsrecurs.cc
nsrecurs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsstress.cc
nsstress.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nsusing.cc
nsusing.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
operator.cc
operator.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
oranking.cc
oranking.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
overload-const.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
overload-const.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
overload.cc
overload.exp Set print symbol off in some tests 2014-08-15 07:55:16 +08:00
ovldbreak.cc
ovldbreak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch3.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovsrch4.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
paren-type.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
paren-type.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
parse-lang.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
parse-lang.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pass-by-ref.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pass-by-ref.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr-574.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr-574.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr-1023.cc
pr-1023.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr-1210.cc
pr-1210.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr9067.cc
pr9067.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr9167.cc
pr9167.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr9594.cc
pr9631.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr9631.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr10687.cc
pr10687.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr10728-x.cc Return by value to coax Clang into emitting the full definition of a test type. 2014-04-24 22:15:40 -07:00
pr10728-x.h Return by value to coax Clang into emitting the full definition of a test type. 2014-04-24 22:15:40 -07:00
pr10728-y.cc Return by value to coax Clang into emitting the full definition of a test type. 2014-04-24 22:15:40 -07:00
pr10728.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr12028.cc
pr12028.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr17132.cc Add new argument NOSIDE to find_overload_match. 2014-08-15 18:28:59 -07:00
pr17132.exp Add new argument NOSIDE to find_overload_match. 2014-08-15 18:28:59 -07:00
pr17494.cc Fix evaluation of method calls under EVAL_SKIP. 2014-11-03 18:01:39 -08:00
pr17494.exp Fix evaluation of method calls under EVAL_SKIP. 2014-11-03 18:01:39 -08:00
printmethod.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
printmethod.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psmang.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psmang1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psmang2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab-parameter.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab-parameter.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype-cv-cp.cc Ensure unreferenced static symbols aren't omitted by clang (either marking them __attribute__((used)) or making them non-static) 2014-04-24 22:33:46 -07:00
ptype-cv-cp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype-flags.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype-flags.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
punctuator.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
re-set-overloaded.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
re-set-overloaded.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readnow-language.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readnow-language.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ref-params.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ref-params.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ref-types.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ref-types.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
rtti.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
rtti.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
rtti1.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
rtti2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shadow.cc
shadow.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
smartp.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
smartp.exp Enable chained function calls in C++ expressions. 2014-11-28 16:01:16 -08:00
static-method.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
static-method.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
static-print-quit.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
static-print-quit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
temargs.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
temargs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
templates.cc
templates.exp Set print symbol off in some tests 2014-08-15 07:55:16 +08:00
try_catch.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
try_catch.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typedef-operator.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typedef-operator.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typeid.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typeid.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
userdef.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
userdef.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
using-crash.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
using-crash.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
virtbase.cc
virtbase.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
virtfunc.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
virtfunc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
virtfunc2.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
virtfunc2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
vla-cxx.cc fix PR 17106 2014-07-14 10:14:36 -06:00
vla-cxx.exp fix PR 17106 2014-07-14 10:14:36 -06:00