diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-07-01 20:16:39 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-07-01 20:16:39 +0000 |
commit | dcf9f4ab7f00dba719a501c8bca3ff446edd200d (patch) | |
tree | 14915a66bc52576b54422d907b08a8b5e0258cb0 /gdb/testsuite/gdb.cp/minsym-fallback.cc | |
parent | bc68c4e5f855998fce6b79e5d96b913b548541ed (diff) | |
download | gdb-dcf9f4ab7f00dba719a501c8bca3ff446edd200d.zip gdb-dcf9f4ab7f00dba719a501c8bca3ff446edd200d.tar.gz gdb-dcf9f4ab7f00dba719a501c8bca3ff446edd200d.tar.bz2 |
gdb/
Fall back linespec to minimal symbols.
* linespec.c (decode_line_1): New variable ex, saved_argptr. Protect
decode_compound by TRY_CATCH, fall back on minsyms if it failed.
(find_method, symbol_found): Change error to cplusplus_error.
gdb/testsuite/
Fall back linespec to minimal symbols.
* gdb.base/psymtab.exp (Don't search past end of psymtab.): Update the
error message.
* gdb.cp/cplusfuncs.exp (list foo::operator int*): Likewise.
* gdb.cp/minsym-fallback-main.cc: New file.
* gdb.cp/minsym-fallback.cc: New file.
* gdb.cp/minsym-fallback.exp: New file.
* gdb.cp/minsym-fallback.h: New file.
Diffstat (limited to 'gdb/testsuite/gdb.cp/minsym-fallback.cc')
-rw-r--r-- | gdb/testsuite/gdb.cp/minsym-fallback.cc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.cp/minsym-fallback.cc b/gdb/testsuite/gdb.cp/minsym-fallback.cc new file mode 100644 index 0000000..1ecd289 --- /dev/null +++ b/gdb/testsuite/gdb.cp/minsym-fallback.cc @@ -0,0 +1,23 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2011 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#include "minsym-fallback.h" + +void +C::f () +{ +} |