* stabs.texinfo: Fix for array types to mention lower bounds.
authorPer Bothner <per@bothner.com>
Mon, 22 Feb 1993 01:11:13 +0000 (01:11 +0000)
committerPer Bothner <per@bothner.com>
Mon, 22 Feb 1993 01:11:13 +0000 (01:11 +0000)
gdb/doc/ChangeLog
gdb/doc/stabs.texinfo

index 6939740f2fcea4adfb85972fb215c2233ef20806..92b63ac9e4e9e9f6b89834e2e5f2de74786bafcd 100644 (file)
@@ -1,3 +1,7 @@
+Sun Feb 21 17:09:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
+
+       * stabs.texinfo:  Fix for array types to mention lower bounds.
+
 Thu Feb 18 01:19:49 1993  John Gilmore  (gnu@cygnus.com)
 
        * gdbint.texinfo:  Update PTRACE_ARG3_TYPE doc, pull PT_*.
index 7078641daa54bcb7fce566c0176d28ec2d2f4462..c5b230d3683fbb77037a624725dfc7880500fc72 100644 (file)
@@ -1080,8 +1080,9 @@ type number.
 
 After the equals sign is a type descriptor, ar, which says that the
 type being defined is an array.  Following the type descriptor for an
-array is the type of the index, a null field, the upper bound of the
-array indexing, and the type of the array elements.
+array is the type of the index, the lower bound for array indexing
+(always 0 in C), the upper bound for array indexing (in C: one less
+than the length of the array), and the type of the array elements.
 
 The array definition above generates the assembly language that
 follows.