diff options
author | Daniel Jacobowitz <drow@false.org> | 2004-10-03 16:16:01 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2004-10-03 16:16:01 +0000 |
commit | dd5e69327d812fb2fef90e5aebdd34b66c5f0280 (patch) | |
tree | 8519c0d045a7e1fe51df1eb10fa281e785ef0d05 /gdb | |
parent | e07c999f48129a8ec92c81a135e6f24ac8d248ca (diff) | |
download | gdb-dd5e69327d812fb2fef90e5aebdd34b66c5f0280.zip gdb-dd5e69327d812fb2fef90e5aebdd34b66c5f0280.tar.gz gdb-dd5e69327d812fb2fef90e5aebdd34b66c5f0280.tar.bz2 |
* dwarf2read.c (read_subrange_type): Add comment for variable
sized arrays.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 99620d3..e917a41 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-10-03 Daniel Jacobowitz <dan@debian.org> + + * dwarf2read.c (read_subrange_type): Add comment for variable + sized arrays. + 2004-10-03 Paul Hilfinger <hilfingr@nile.gnat.com> * Makefile.in (.l.c): Modify rule for compatibility with recent diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index e2caefe..3e24e93 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -4610,6 +4610,9 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) low = 1; } + /* FIXME: For variable sized arrays either of these could be + a variable rather than a constant value. We'll allow it, + but we don't know how to handle it. */ attr = dwarf2_attr (die, DW_AT_lower_bound, cu); if (attr) low = dwarf2_get_attr_constant_value (attr, 0); |