binutils-gdb/gdb/testsuite/gdb.cp
Pedro Alves a22ecf7026 Fix regression: expression completer and scope operator (PR gdb/22584)
I noticed this regression in the expression completer:

 "(gdb) p std::[TAB]" => "(gdb) p std::std::"

obviously we should have not completed to "std::std::".

The problem is that in the earlier big completer rework, I missed
taking into account the fact that with expressions, the completion
word point is not always at the start of the symbol name (it is with
linespecs).

The fix is to run the common prefix / LCD string (what readline uses
to expand the input line) through make_completion_match_str too.

New testcase included, exercising both TAB completion and the complete
command.

gdb/ChangeLog:
2017-12-13  Pedro Alves  <palves@redhat.com>

	* completer.c (completion_tracker::maybe_add_completion): New
	'text' and 'word' parameters.  Use make_completion_match_str.
	(completion_tracker::add_completion): New 'text' and 'word'
	parameters.  Pass down.
	(completion_tracker::recompute_lowest_common_denominator): Change
	parameter type to gdb::unique_xmalloc_ptr rval ref.  Adjust.
	* completer.h (completion_tracker::add_completion): New 'text' and
	'word' parameters.
	(completion_tracker::recompute_lowest_common_denominator): Change
	parameter type to gdb::unique_xmalloc_ptr rval ref.
	(completion_tracker::recompute_lowest_common_denominator): Change
	parameter type to gdb::unique_xmalloc_ptr rval ref.
	* symtab.c (completion_list_add_name): Pass down 'text' and 'word'
	as well.

gdb/testsuite/ChangeLog:
2017-12-13  Pedro Alves  <palves@redhat.com>

	* gdb.cp/cpcompletion.exp: Load completion-support.exp.
	("expression with namespace"): New set of tests.
	* gdb.cp/pr9594.cc (Test_NS::foo, Test_NS::bar)
	(Nested::Test_NS::qux): New.
	* lib/completion-support.exp (test_gdb_complete_cmd_multiple): Add
	defaults to 'start_quote_char' and 'end_quote_char' parameters.
2017-12-13 16:38:50 +00:00
..
abstract-origin.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
abstract-origin.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ambiguous.cc
ambiguous.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota2.cc
annota2.exp Skip a few tests on targets that can't use the "run" commmand. 2017-10-13 18:11:31 +01:00
annota3.cc
annota3.exp Skip a few tests on targets that can't use the "run" commmand. 2017-10-13 18:11:31 +01:00
anon-ns.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon-ns.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon-ns2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon-struct.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon-struct.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon-union.cc
anon-union.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arg-reference.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arg-reference.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
baseenum.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
baseenum.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bool.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bool.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint.cc [gdb/testsuite] Fix wrong return type in tests 2017-11-29 10:45:31 +00:00
breakpoint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bs15503.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bs15503.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-c-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-c.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-c.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
casts.cc testsuite: Fix false FAIL in gdb.cp/casts.exp 2016-09-16 19:23:22 +02:00
casts.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
casts03.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
chained-calls.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
chained-calls.exp Fix illegal upper case gdb cmd in chained-calls.exp 2017-02-15 11:26:38 +00:00
class2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
class2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
classes.cc Fix broken recursion detection when printing static members 2017-10-26 22:26:08 -04:00
classes.exp Fix broken recursion detection when printing static members 2017-10-26 22:26:08 -04:00
cmpd-minsyms.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cmpd-minsyms.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
converts.cc
converts.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cp-relocate.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cp-relocate.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cpcompletion.exp Fix regression: expression completer and scope operator (PR gdb/22584) 2017-12-13 16:38:50 +00:00
cpexprs.cc Canonicalize conversion operators 2017-10-18 11:26:02 -07:00
cpexprs.exp Canonicalize conversion operators 2017-10-18 11:26:02 -07:00
cplabel.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cplabel.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cplusfuncs.cc
cplusfuncs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cpsizeof.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cpsizeof.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctti.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cttiadd.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cttiadd1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cttiadd2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cttiadd3.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
debug-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
demangle.exp Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
derivation.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
derivation.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
derivation2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
destrprint.cc
destrprint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dispcxx.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dispcxx.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ena-dis-br-range.cc Allow enabling/disabling breakpoint location ranges 2017-11-07 11:00:31 +00:00
ena-dis-br-range.exp Add some more breakpoint/location range tests 2017-11-07 11:16:09 +00:00
enum-class.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum-class.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exception.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exception.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exceptprint.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exceptprint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs-cxx.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs-cxx.exp Replace mail address with the URL in copyright header 2017-12-01 11:34:14 +00:00
expand-sals.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-sals.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
extern-c.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
extern-c.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
filename.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
filename.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
formatted-ref.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
formatted-ref.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fpointer.cc
fpointer.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1355.cc
gdb1355.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2384-base.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2384-base.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2384.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2384.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2495.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb2495.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hang.H
hang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hang1.cc
hang2.cc
hang3.cc
impl-this.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
impl-this.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
includefile update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-dlopen-lib.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-dlopen.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-dlopen.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
inherit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
iostream.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
iostream.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
koenig.cc
koenig.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
local-static.c Make "p S::method() const::static_var" work too 2017-09-04 20:21:16 +01:00
local-static.cc Handle "p S::method()::static_var" in the C++ parser 2017-09-04 20:21:15 +01:00
local-static.exp Make "p S::method() const::static_var" work too 2017-09-04 20:21:16 +01:00
local.cc
local.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
m-data.cc
m-data.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
m-static.cc
m-static.exp Handle "p 'S::method()::static_var'" (quoted) in symbol lookup 2017-09-04 20:21:16 +01:00
m-static.h testsuite: Fix C++11 compilation failure for gdb.cp/m-static.exp 2016-09-15 23:45:11 +02:00
m-static1.cc
maint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-ctor.cc
mb-ctor.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-inline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-inline.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-inline1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-inline2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
mb-templates.cc
mb-templates.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-name.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-name.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-ptr.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
member-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
meth-typedefs.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
meth-typedefs.exp Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] 2017-11-29 19:43:48 +00:00
method.cc
method.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
method2.cc
method2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
minsym-fallback-main.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
minsym-fallback.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
minsym-fallback.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
minsym-fallback.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
misc.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
misc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namelessclass.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namelessclass.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namelessclass.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namespace-enum-main.cc
namespace-enum.cc
namespace-enum.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namespace-nested-import.cc
namespace-nested-import.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
namespace.cc
namespace.exp Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] 2017-11-29 19:43:48 +00:00
namespace1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-types.cc Record nested types 2017-12-07 15:01:30 -08:00
nested-types.exp Record nested types 2017-12-07 15:01:30 -08:00
nextoverthrow.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nextoverthrow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
no-dmgl-verbose.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
no-dmgl-verbose.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
non-trivial-retval.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
non-trivial-retval.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noparam.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noparam.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsalias.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsalias.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsdecl.cc
nsdecl.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsimport.cc
nsimport.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsnested.cc
nsnested.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsnoimports.cc
nsnoimports.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsrecurs.cc
nsrecurs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsstress.cc
nsstress.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nsusing.cc
nsusing.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
operator.cc
operator.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
oranking.cc Make sure malloc is linked into gdb.cp/oranking.cc. 2017-05-03 12:41:09 -07:00
oranking.exp Fix overload resolution involving rvalue references and cv qualifiers. 2017-04-27 15:58:54 -07:00
overload-const.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
overload-const.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
overload.cc
overload.exp Make "list ambiguous" show symbol names too 2017-09-20 16:21:26 +01:00
ovldbreak.cc
ovldbreak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch3.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovsrch4.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paren-type.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paren-type.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
parse-lang.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
parse-lang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pass-by-ref.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pass-by-ref.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr-574.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr-574.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr-1023.cc
pr-1023.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr-1210.cc
pr-1210.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr9067.cc
pr9067.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr9167.cc
pr9167.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr9594.cc Fix regression: expression completer and scope operator (PR gdb/22584) 2017-12-13 16:38:50 +00:00
pr9631.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr9631.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr10687.cc
pr10687.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr10728-x.cc
pr10728-x.h
pr10728-y.cc
pr10728.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr12028.cc
pr12028.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr17132.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr17132.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr17494.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr17494.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
printmethod.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
printmethod.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psmang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psmang1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psmang2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psymtab-parameter.cc [gdb/testsuite] Fix return type of psymtab-parameter 2017-11-29 13:41:32 +00:00
psymtab-parameter.exp [gdb/testsuite] Fix return type of psymtab-parameter 2017-11-29 13:41:32 +00:00
ptype-cv-cp.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype-cv-cp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype-flags.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype-flags.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
punctuator.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
re-set-overloaded.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
re-set-overloaded.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readnow-language.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readnow-language.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ref-params.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ref-params.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ref-types.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ref-types.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
rtti.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
rtti.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
rtti1.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
rtti2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
rvalue-ref-casts.cc Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-casts.exp Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-overload.cc Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-overload.exp Fix overload resolution involving rvalue references and cv qualifiers. 2017-04-27 15:58:54 -07:00
rvalue-ref-params.cc Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-params.exp Fix overload resolution involving rvalue references and cv qualifiers. 2017-04-27 15:58:54 -07:00
rvalue-ref-sizeof.cc Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-sizeof.exp Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-types.cc Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
rvalue-ref-types.exp Add rvalue reference tests and docs 2017-03-20 13:47:59 -07:00
save-bp-qualified.cc Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] 2017-11-29 19:43:48 +00:00
save-bp-qualified.exp Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] 2017-11-29 19:43:48 +00:00
scope-err.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
scope-err.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shadow.cc [gdb/testsuite] Fix wrong return type in tests 2017-11-29 10:45:31 +00:00
shadow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
smartp.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
smartp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
static-method.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
static-method.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
static-print-quit.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
static-print-quit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
temargs.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
temargs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
templates.cc
templates.exp c++/8218: Destructors w/arguments. 2017-03-10 10:32:09 -08:00
try_catch.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
try_catch.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typedef-operator.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typedef-operator.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typeid.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
typeid.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
userdef.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
userdef.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
using-crash.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
using-crash.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
var-tag-2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
var-tag-3.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
var-tag-4.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
var-tag.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
var-tag.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
virtbase.cc
virtbase.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
virtfunc.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
virtfunc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
virtfunc2.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
virtfunc2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-cxx.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-cxx.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wide_char_types.c Teach GDB that wchar_t is a built-in type in C++ mode 2017-04-12 14:06:40 +01:00
wide_char_types.exp Teach GDB that wchar_t is a built-in type in C++ mode 2017-04-12 14:06:40 +01:00