Fix assertion failure in coerce_unspec_val_to_type
authorTom Tromey <tromey@adacore.com>
Fri, 10 May 2019 16:40:15 +0000 (10:40 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 14 May 2019 22:07:28 +0000 (16:07 -0600)
coerce_unspec_val_to_type does:

      set_value_address (result, value_address (val));

However, this is only valid for lval_memory.  This patch changes this
code to only set the address for lval_memory values.

This seems like an ordinary oversight in coerce_unspec_val_to_type,
and a test case would be difficult to write, so I'm submitting it
without a test case.

Tested on x86-64 Fedora 29; plus using an Ada program that exhibits
the bug (but which cannot be shared).

gdb/ChangeLog
2019-05-14  Tom Tromey  <tromey@adacore.com>

* ada-lang.c (coerce_unspec_val_to_type): Only set address when
value is not lval_memory.

gdb/ChangeLog
gdb/ada-lang.c

index 095a6c2d6350a8afd4d831db0f8a27230d656819..c82d70fc8cea1271b0ad5cb49d0c94e469529a98 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-14  Tom Tromey  <tromey@adacore.com>
+
+       * ada-lang.c (coerce_unspec_val_to_type): Only set address when
+       value is not lval_memory.
+
 2019-05-14  Tom Tromey  <tromey@adacore.com>
 
        * solib.c (info_sharedlibrary_command): Style the file name.
index dee3a83f98c24854777f967b7998616e65e90b2c..23197f603406613b9e348b530d8403e7b46ba3db 100644 (file)
@@ -672,7 +672,8 @@ coerce_unspec_val_to_type (struct value *val, struct type *type)
       set_value_component_location (result, val);
       set_value_bitsize (result, value_bitsize (val));
       set_value_bitpos (result, value_bitpos (val));
-      set_value_address (result, value_address (val));
+      if (VALUE_LVAL (result) == lval_memory)
+       set_value_address (result, value_address (val));
       return result;
     }
 }