diff options
author | Tom Tromey <tromey@redhat.com> | 2014-07-02 15:53:31 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-07-14 10:14:36 -0600 |
commit | d98b7a16a982e4a17995536250b55f7ff82bd78e (patch) | |
tree | e6b6d1644b985759e45160326119cc396bbd4471 /gdb/testsuite/gdb.cp/vla-cxx.exp | |
parent | 548740d6bdd115da2c9c17b194016c2c4c0a4c69 (diff) | |
download | gdb-d98b7a16a982e4a17995536250b55f7ff82bd78e.zip gdb-d98b7a16a982e4a17995536250b55f7ff82bd78e.tar.gz gdb-d98b7a16a982e4a17995536250b55f7ff82bd78e.tar.bz2 |
fix PR 17106
This fixes PR 17106, a regression in printing.
The bug is that resolve_dynamic_type follows struct members and
references, but doesn't consider the possibility of infinite
recursion.
This patch fixes the problem by limiting reference following to the
topmost layer of calls -- that is, reference-typed struct members are
never considered as being VLAs.
Built and regtested on x86-64 Fedora 20.
New test case included.
2014-07-14 Tom Tromey <tromey@redhat.com>
PR exp/17106:
* gdbtypes.c (is_dynamic_type_internal): New function, from
is_dynamic_type.
(is_dynamic_type): Rewrite.
(resolve_dynamic_union): Use resolve_dynamic_type_internal.
(resolve_dynamic_struct): Likewise.
(resolve_dynamic_type_internal): New function, from
resolve_dynamic_type.
(resolve_dynamic_type): Rewrite.
2014-07-14 Tom Tromey <tromey@redhat.com>
* gdb.cp/vla-cxx.cc: New file.
* gdb.cp/vla-cxx.exp: New file.
Diffstat (limited to 'gdb/testsuite/gdb.cp/vla-cxx.exp')
-rw-r--r-- | gdb/testsuite/gdb.cp/vla-cxx.exp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.cp/vla-cxx.exp b/gdb/testsuite/gdb.cp/vla-cxx.exp new file mode 100644 index 0000000..1ff815e --- /dev/null +++ b/gdb/testsuite/gdb.cp/vla-cxx.exp @@ -0,0 +1,35 @@ +# Copyright 2014 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/>. + +standard_testfile .cc + +if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { + return -1 +} + +if ![runto_main] { + return -1 +} + +gdb_breakpoint [gdb_get_line_number "vlas_filled"] +gdb_continue_to_breakpoint "vlas_filled" + +gdb_test "print vla" " = \\{5, 7, 9\\}" +gdb_test "print vlaref" " = \\(int \\(&\\)\\\[3\\\]\\) @$hex: \\{5, 7, 9\\}" +# The ".*" here is because what gdb emits currently is "const +# vlareftypedef", which seems incorrect -- and since that isn't the +# bug being tested, it's better not to depend on the exact spelling. +gdb_test "print vlaref2" " = \\(.*\\) @$hex: \\{5, 7, 9\\}" +gdb_test "print c" " = \\{e = \\{c = @$hex\\}\\}" |