binutils-gdb/gdb/testsuite/gdb.cp
Jan Kratochvil d41a5c096e testsuite: Fix false FAIL in gdb.cp/casts.exp
gcc-6.2.1-1.fc26.x86_64

gdb compile failed, /home/jkratoch/redhat/gdb-clean/gdb/testsuite/gdb.cp/casts.cc:40:10: error: expected primary-expression before 'int'
 decltype(int x)
          ^~~
/home/jkratoch/redhat/gdb-clean/gdb/testsuite/gdb.cp/casts.cc:40:10: error: expected ')' before 'int'
/home/jkratoch/redhat/gdb-clean/gdb/testsuite/gdb.cp/casts.cc:40:1: error: expected unqualified-id before 'decltype'
 decltype(int x)
 ^~~~~~~~
/home/jkratoch/redhat/gdb-clean/gdb/testsuite/gdb.cp/casts.cc: In function 'int main(int, char**)':
/home/jkratoch/redhat/gdb-clean/gdb/testsuite/gdb.cp/casts.cc:59:14: error: expected primary-expression before 'decltype'
   double y = decltype(2);
              ^~~~~~~~

'decltype' is a registered keyword since C++11 which is now a default for GCC.

On Thu, 15 Sep 2016 14:06:56 +0200, Pedro Alves wrote:

Seems to be exercising the FLAG_SHADOW bits:

...
    {"__typeof__", TYPEOF, OP_TYPEOF, 0 },
    {"__typeof", TYPEOF, OP_TYPEOF, 0 },
    {"typeof", TYPEOF, OP_TYPEOF, FLAG_SHADOW },
    {"__decltype", DECLTYPE, OP_DECLTYPE, FLAG_CXX },
    {"decltype", DECLTYPE, OP_DECLTYPE, FLAG_CXX | FLAG_SHADOW },
...

/* This is used to associate some attributes with a token.  */

enum token_flag
{
...
  /* If this bit is set, the token is conditional: if there is a
     symbol of the same name, then the token is a symbol; otherwise,
     the token is a keyword.  */

  FLAG_SHADOW = 2
};

So perhaps a better fix is to move that particular test to a
separate testcase that force-compiles with -std=c++03.

gdb/testsuite/ChangeLog
2016-09-16  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.cp/casts.cc (decltype): Move it ...
	(main): ... with its call to ...
	* gdb.cp/casts03.cc: ... a new file.
	* gdb.cp/casts.exp: Add new file casts03.cc, move decltype test to it.
2016-09-16 19:23:22 +02:00
..
abstract-origin.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
abstract-origin.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ambiguous.cc
ambiguous.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota2.cc
annota2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota3.cc
annota3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon-ns.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon-ns.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon-ns2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon-struct.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon-struct.exp Tweak gdb.cp tests for aarch32 2016-08-01 09:32:06 +01:00
anon-union.cc
anon-union.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arg-reference.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arg-reference.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
baseenum.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
baseenum.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bool.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bool.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bs15503.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bs15503.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-c-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-c.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-c.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
casts.cc testsuite: Fix false FAIL in gdb.cp/casts.exp 2016-09-16 19:23:22 +02:00
casts.exp testsuite: Fix false FAIL in gdb.cp/casts.exp 2016-09-16 19:23:22 +02:00
casts03.cc testsuite: Fix false FAIL in gdb.cp/casts.exp 2016-09-16 19:23:22 +02:00
chained-calls.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
chained-calls.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
class2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
class2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
classes.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
classes.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cmpd-minsyms.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cmpd-minsyms.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
converts.cc
converts.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cp-relocate.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cp-relocate.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cpcompletion.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cpexprs.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cpexprs.exp Tweak gdb.cp tests for aarch32 2016-08-01 09:32:06 +01:00
cplabel.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cplabel.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cplusfuncs.cc
cplusfuncs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cpsizeof.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cpsizeof.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctti.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cttiadd.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cttiadd1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cttiadd2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cttiadd3.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
debug-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
demangle.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
derivation.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
derivation.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
derivation2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
destrprint.cc
destrprint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dispcxx.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dispcxx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum-class.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum-class.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exception.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exception.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exceptprint.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exceptprint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs-cxx.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs-cxx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-sals.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-sals.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
extern-c.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
extern-c.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filename.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filename.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
formatted-ref.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
formatted-ref.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fpointer.cc
fpointer.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1355.cc
gdb1355.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb2384-base.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb2384-base.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb2384.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb2384.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
gdb2495.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb2495.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
hang.H
hang.exp Remove obsolete TYPE_FLAG_... values 2016-09-06 17:29:15 +02:00
hang1.cc
hang2.cc
hang3.cc
impl-this.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
impl-this.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
includefile GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infcall-dlopen-lib.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infcall-dlopen.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infcall-dlopen.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
inherit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
iostream.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
iostream.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
koenig.cc
koenig.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
local.cc
local.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
m-data.cc
m-data.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
m-static.cc
m-static.exp Tweak gdb.cp tests for aarch32 2016-08-01 09:32:06 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-ctor.cc
mb-ctor.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-inline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-inline.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-inline1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-inline2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mb-templates.cc
mb-templates.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
member-name.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
member-name.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
member-ptr.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
member-ptr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
meth-typedefs.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
meth-typedefs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
method.cc
method.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
method2.cc
method2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
minsym-fallback-main.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
minsym-fallback.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
minsym-fallback.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
minsym-fallback.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
misc.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
misc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namelessclass.S GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namelessclass.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namelessclass.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namespace-enum-main.cc
namespace-enum.cc
namespace-enum.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namespace-nested-import.cc
namespace-nested-import.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namespace.cc
namespace.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
namespace1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nextoverthrow.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nextoverthrow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
no-dmgl-verbose.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
no-dmgl-verbose.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
non-trivial-retval.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
non-trivial-retval.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noparam.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noparam.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsalias.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsalias.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsdecl.cc
nsdecl.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsimport.cc
nsimport.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsnested.cc
nsnested.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsnoimports.cc
nsnoimports.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsrecurs.cc
nsrecurs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsstress.cc
nsstress.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nsusing.cc
nsusing.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
operator.cc
operator.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
oranking.cc
oranking.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
overload-const.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
overload-const.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
overload.cc
overload.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovldbreak.cc
ovldbreak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch3.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovsrch4.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paren-type.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paren-type.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
parse-lang.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
parse-lang.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pass-by-ref.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pass-by-ref.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr-574.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr-574.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr-1023.cc
pr-1023.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr-1210.cc
pr-1210.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr9067.cc
pr9067.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr9167.cc
pr9167.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr9594.cc
pr9631.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr9631.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr10687.cc
pr10687.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr10728-x.cc
pr10728-x.h
pr10728-y.cc
pr10728.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr12028.cc
pr12028.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr17132.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr17132.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr17494.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr17494.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
printmethod.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
printmethod.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psmang.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psmang1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psmang2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab-parameter.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab-parameter.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype-cv-cp.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype-cv-cp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype-flags.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype-flags.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
punctuator.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
re-set-overloaded.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
re-set-overloaded.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
readnow-language.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readnow-language.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ref-params.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ref-params.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ref-types.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ref-types.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
rtti.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
rtti.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
rtti1.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
rtti2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
scope-err.cc PR 18303, Tolerate malformed input for lookup_symbol-called functions 2016-03-15 15:25:15 -07:00
scope-err.exp PR 18303, Tolerate malformed input for lookup_symbol-called functions 2016-03-15 15:25:15 -07:00
shadow.cc
shadow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
smartp.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
smartp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
static-method.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
static-method.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
static-print-quit.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
static-print-quit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
temargs.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
temargs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
templates.cc
templates.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
try_catch.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
try_catch.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
typedef-operator.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
typedef-operator.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
typeid.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
typeid.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
userdef.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
userdef.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
using-crash.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
using-crash.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
var-tag-2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
var-tag-3.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
var-tag-4.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
var-tag.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
var-tag.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
virtbase.cc
virtbase.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
virtfunc.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
virtfunc.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
virtfunc2.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
virtfunc2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-cxx.cc testsuite: Fix run to main issue introduced by GCC 5.x. 2016-03-02 16:40:55 +01:00
vla-cxx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00