diff options
Diffstat (limited to 'gdb/values.c')
-rw-r--r-- | gdb/values.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |