diff options
author | Doug Evans <dje@google.com> | 2014-03-27 11:43:47 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-03-27 11:43:47 -0700 |
commit | 1dbab08b0e074effc30661c9b894f7a75dd51c94 (patch) | |
tree | 48040bdc24fee8b217e4ebd5a8e045fb8b8cb828 | |
parent | 5d1ef36157a045cf9dd3356ed35ac24447e9cbd6 (diff) | |
download | gdb-1dbab08b0e074effc30661c9b894f7a75dd51c94.zip gdb-1dbab08b0e074effc30661c9b894f7a75dd51c94.tar.gz gdb-1dbab08b0e074effc30661c9b894f7a75dd51c94.tar.bz2 |
* dwarf2read.c (struct dwarf2_cu): Improve comments for members
addr_base, ranges_base.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 53f12e8..e5b16bc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-03-27 Doug Evans <dje@google.com> + + * dwarf2read.c (struct dwarf2_cu): Improve comments for members + addr_base, ranges_base. + 2014-03-26 Keith Seitz <keiths@redhat.com> * ada-tasks.c (get_tcb_types_info): Search STRUCT_DOMAIN for diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 705dc2d..cf95583 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -513,12 +513,12 @@ struct dwarf2_cu /* The DW_AT_addr_base attribute if present, zero otherwise (zero is a valid value though). - Note this value comes from the stub CU/TU's DIE. */ + Note this value comes from the Fission stub CU/TU's DIE. */ ULONGEST addr_base; /* The DW_AT_ranges_base attribute if present, zero otherwise (zero is a valid value though). - Note this value comes from the stub CU/TU's DIE. + Note this value comes from the Fission stub CU/TU's DIE. Also note that the value is zero in the non-DWO case so this value can be used without needing to know whether DWO files are in use or not. N.B. This does not apply to DW_AT_ranges appearing in |