From: Elena Zannoni Date: Thu, 17 Apr 2003 20:31:43 +0000 (+0000) Subject: 2003-04-17 Elena Zannoni X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=514621a98101ad54ce242201b5aa450b6182b4bb;p=binutils-gdb.git 2003-04-17 Elena Zannoni * values.c (value_being_returned): Don't fetch the return value if the return type is void. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f66137bd784..08cbb63adf6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-04-17 Elena Zannoni + + * values.c (value_being_returned): Don't fetch the return + value if the return type is void. + 2003-04-17 Jeff Johnston * thread-db.c: Reindented. diff --git a/gdb/values.c b/gdb/values.c index 8b1d013a0e1..88c6a61037b 100644 --- a/gdb/values.c +++ b/gdb/values.c @@ -1240,7 +1240,9 @@ value_being_returned (struct type *valtype, struct regcache *retbuf, val = allocate_value (valtype); CHECK_TYPEDEF (valtype); - EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val)); + /* If the function returns void, don't bother fetching the return value. */ + if (TYPE_CODE (valtype) != TYPE_CODE_VOID) + EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val)); return val; }