From: Joel Brobecker Date: Wed, 28 Feb 2007 19:42:08 +0000 (+0000) Subject: * gdbtypes.c (replace_type): Fix typo that caused us to not update X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=787cbe146ccf6eb5a45fe19fab0cad0ecf46af41;p=binutils-gdb.git * gdbtypes.c (replace_type): Fix typo that caused us to not update length of the types referenced by the new type CV ring. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 250bc494b82..53a2881473e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-02-28 Joel Brobecker + + * gdbtypes.c (replace_type): Fix typo that caused us to not update + length of the types referenced by the new type CV ring. + 2007-02-28 Daniel Jacobowitz * frame.c (frame_pop, frame_observer_target_changed): Call diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index 30b53623e99..f2155584514 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -636,7 +636,7 @@ replace_type (struct type *ntype, struct type *type) call replace_type(). */ gdb_assert (TYPE_ADDRESS_CLASS_ALL (chain) == 0); - TYPE_LENGTH (ntype) = TYPE_LENGTH (type); + TYPE_LENGTH (chain) = TYPE_LENGTH (type); chain = TYPE_CHAIN (chain); } while (ntype != chain);