From 549b9c7c816952814d75791dbee0b586b53d8629 Mon Sep 17 00:00:00 2001 From: brobecke Date: Thu, 17 May 2007 16:38:25 +0000 Subject: [PATCH] * gdbtypes.c (make_pointer_type): Preserve the pointer type chain and set the length of all the variants of the pointer type. --- gdb/ChangeLog | 5 +++++ gdb/gdbtypes.c | 11 +++++++++++ 2 files changed, 16 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ea00205acb..00656aa991 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-05-17 Joel Brobecker + + * gdbtypes.c (make_pointer_type): Preserve the pointer type chain + and set the length of all the variants of the pointer type. + 2007-05-17 Maciej W. Rozycki * mips-tdep.c (mips_n32n64_push_dummy_call): Fix and reformat a diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index f215558451..f43983a072 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -276,6 +276,7 @@ make_pointer_type (struct type *type, struct type **typeptr) { struct type *ntype; /* New type */ struct objfile *objfile; + struct type *chain; ntype = TYPE_POINTER_TYPE (type); @@ -301,7 +302,9 @@ make_pointer_type (struct type *type, struct type **typeptr) { ntype = *typeptr; objfile = TYPE_OBJFILE (ntype); + chain = TYPE_CHAIN (ntype); smash_type (ntype); + TYPE_CHAIN (ntype) = chain; TYPE_OBJFILE (ntype) = objfile; } @@ -321,6 +324,14 @@ make_pointer_type (struct type *type, struct type **typeptr) if (!TYPE_POINTER_TYPE (type)) /* Remember it, if don't have one. */ TYPE_POINTER_TYPE (type) = ntype; + /* Update the length of all the other variants of this type. */ + chain = TYPE_CHAIN (ntype); + while (chain != ntype) + { + TYPE_LENGTH (chain) = TYPE_LENGTH (ntype); + chain = TYPE_CHAIN (chain); + } + return ntype; } -- 2.11.0