* gdb.texinfo (Fortran Operators): Describe '%' operator.

This commit is contained in:
Markus Deuling 2008-04-22 06:51:04 +00:00
parent 38d6ea5b02
commit 68837c9d8d
2 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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