]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/testsuite/ChangeLog
gdb/fortran: Correct the lval type for array elements of internal vars
authorAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 7 Jan 2021 17:13:21 +0000 (17:13 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Fri, 8 Jan 2021 09:54:21 +0000 (09:54 +0000)
commite343681375c1e5a27ea92486649f6a58163c0e61
tree47d8e5fea92b292b5a90b80be8bbc08cf2106add
parentf4cfa91741b71bc4b64c6e8ec132873d6d5f7957
gdb/fortran: Correct the lval type for array elements of internal vars

Since this commit:

  commit a5c641b57b0b5e245b8a011cccc93a4120c8bd63
  Date:   Thu Oct 8 16:45:59 2020 +0100

      gdb/fortran: Add support for Fortran array slices at the GDB prompt

A bug was introduced into GDB.  Consider this Fortan array:

  integer, dimension (1:10) :: array
  array = 1

Now inside GDB:

  (gdb) set $var = array
  (gdb) set $var(1) = 2
  Left operand of assignment is not an lvalue.

The problem is that the new code for slicing Fortran arrays now does
not set the lval type correctly for arrays that are not in memory.
This is easily fixed by making use of value_from_component.

After this the above example behaves as you'd expect.

gdb/ChangeLog:

* f-lang.c (fortran_value_subarray): Call value_from_component.

gdb/testsuite/ChangeLog:

* gdb.fortran/intvar-array.exp: New file.
* gdb.fortran/intvar-array.f90: New file.
gdb/ChangeLog
gdb/f-lang.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.fortran/intvar-array.exp [new file with mode: 0644]
gdb/testsuite/gdb.fortran/intvar-array.f90 [new file with mode: 0644]