From: uweigand Date: Mon, 29 Jun 2009 17:26:29 +0000 (+0000) Subject: * ada-lang.c (ada_index_type): Update comment. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=83a01ff390540ed3f1c4e33700597f149e579646;p=pf3gnuchains%2Fpf3gnuchains3x.git * ada-lang.c (ada_index_type): Update comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 37ef669799..ed95354217 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2009-06-29 Ulrich Weigand + * ada-lang.c (ada_index_type): Update comment. + +2009-06-29 Ulrich Weigand + * ada-lang.c (ada_index_type): Make static. Add NAME argument. Throw error on invalid input arguments. Return NULL if unable to determine index type. diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 7a49c453d9..b35ff3cedb 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -2408,7 +2408,10 @@ ada_array_element_type (struct type *type, int nindices) } /* The type of nth index in arrays of given type (n numbering from 1). - Does not examine memory. */ + Does not examine memory. Throws an error if N is invalid or TYPE + is not an array type. NAME is the name of the Ada attribute being + evaluated ('range, 'first, 'last, or 'length); it is used in building + the error message. */ static struct type * ada_index_type (struct type *type, int n, const char *name)