Change array element access to something similar to way C works.
authorDavid Lecomber <david@lecomber.net>
Tue, 9 Sep 2003 16:51:54 +0000 (16:51 +0000)
committerDavid Lecomber <david@lecomber.net>
Tue, 9 Sep 2003 16:51:54 +0000 (16:51 +0000)
commitcd859a2010670cdeaf184903224ae2fac65afd6a
tree6fa7c150b0bf40548ae92e1179b9cc591caf79f3
parente8a7b686ffab6f15e4d30df4abbb1ed7096122b9
Change array element access to something similar to way C works.
The old method would drag in the entire array, then look for the
single element.  This method just gets the right element out instead.
Saves memory, and saves a crash for array with (*) as one of the
dimensions when it would previously have allocated (unsigned int) -1 bytes.
gdb/eval.c