diff options
author | Michael Snyder <msnyder@vmware.com> | 2002-05-09 18:12:00 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2002-05-09 18:12:00 +0000 |
commit | 2c8682ee452252decef01f0899bd89a80ba58c42 (patch) | |
tree | c681a8859a089e1bc7d3b89ec7c8475d25da483e | |
parent | e2cd42ddee645897df2d7ea87c5a1676576251fa (diff) | |
download | fsf-binutils-gdb-2c8682ee452252decef01f0899bd89a80ba58c42.zip fsf-binutils-gdb-2c8682ee452252decef01f0899bd89a80ba58c42.tar.gz fsf-binutils-gdb-2c8682ee452252decef01f0899bd89a80ba58c42.tar.bz2 |
2002-05-08 Michael Snyder <msnyder@redhat.com>
* stabs.texinfo (Attributes): Document new "vector" attribute.
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/stabs.texinfo | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index a431b1e..8c9a9f6 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2002-05-08 Michael Snyder <msnyder@redhat.com> + + * stabs.texinfo (Attributes): Document new "vector" attribute. + 2002-05-04 Andrew Cagney <ac131313@redhat.com> * gdbint.texinfo (Releasing GDB): Revise `Create a Release'. diff --git a/gdb/doc/stabs.texinfo b/gdb/doc/stabs.texinfo index 6ffac7b..52b88b4 100644 --- a/gdb/doc/stabs.texinfo +++ b/gdb/doc/stabs.texinfo @@ -287,6 +287,12 @@ Indicate that this type is a string instead of an array of characters, or a bitstring instead of a set. It doesn't change the layout of the data being represented, but does enable the debugger to know which type it is. + +@item V +Indicate that this type is a vector instead of an array. The only +major difference between vectors and arrays is that vectors are +passed by value instead of by reference (vector coprocessor extension). + @end table All of this can make the string field quite long. All versions of GDB, |