aboutsummaryrefslogtreecommitdiff
path: root/gdb/stack.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2007-11-09 20:38:58 +0000
committerJoel Brobecker <brobecker@gnat.com>2007-11-09 20:38:58 +0000
commit0366cf3f2669050b7172d383248b9f48f1e521a4 (patch)
treeaaf595ffd9c194d1d435d862033aaa29c7676fbb /gdb/stack.c
parentd61c6bd41cb84434590a97fe13be433b418e0bbd (diff)
downloadfsf-binutils-gdb-0366cf3f2669050b7172d383248b9f48f1e521a4.zip
fsf-binutils-gdb-0366cf3f2669050b7172d383248b9f48f1e521a4.tar.gz
fsf-binutils-gdb-0366cf3f2669050b7172d383248b9f48f1e521a4.tar.bz2
* stack.c (print_this_frame_argument_p): Handle arguments passed
by reference properly.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r--gdb/stack.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/stack.c b/gdb/stack.c
index e034033..220a411 100644
--- a/gdb/stack.c
+++ b/gdb/stack.c
@@ -179,6 +179,8 @@ print_this_frame_argument_p (struct symbol *sym)
print the non-scalar ones. */
type = CHECK_TYPEDEF (SYMBOL_TYPE (sym));
+ while (TYPE_CODE (type) == TYPE_CODE_REF)
+ type = CHECK_TYPEDEF (TYPE_TARGET_TYPE (type));
switch (TYPE_CODE (type))
{
case TYPE_CODE_ARRAY: