diff options
author | Markus Deuling <deuling@de.ibm.com> | 2008-04-22 06:51:04 +0000 |
---|---|---|
committer | Markus Deuling <deuling@de.ibm.com> | 2008-04-22 06:51:04 +0000 |
commit | 68837c9d8d2b2fed53f1232a82d333b23d01e320 (patch) | |
tree | 577b212e8b29f0acec3ddc10978915b8ee71c983 /gdb | |
parent | 38d6ea5b02e4a60fd3aa3b59ac1b2b10c6ee7fa8 (diff) | |
download | gdb-68837c9d8d2b2fed53f1232a82d333b23d01e320.zip gdb-68837c9d8d2b2fed53f1232a82d333b23d01e320.tar.gz gdb-68837c9d8d2b2fed53f1232a82d333b23d01e320.tar.bz2 |
* gdb.texinfo (Fortran Operators): Describe '%' operator.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 12e82c8..152bbf3 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2008-04-22 Markus Deuling <deuling@de.ibm.com> + + * gdb.texinfo (Fortran Operators): Describe '%' operator. + 2008-04-20 Eli Zaretskii <eliz@gnu.org> * gdb.texinfo (Set Breaks): Mention that multiple location diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index f512296..4f77c9d 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -9903,6 +9903,12 @@ of the second one. @item : The range operator. Normally used in the form of array(low:high) to represent a section of array. + +@item % +The access component operator. Normally used to access elements in derived +types. Also suitable for unions. As unions aren't part of regular Fortran, +this can only happen when accessing a register that uses a gdbarch-defined +union type. @end table @node Fortran Defaults |