linker: Fix off-by-one error implicit array sizing
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 16 Feb 2011 02:17:53 +0000 (18:17 -0800)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 16 Feb 2011 02:22:33 +0000 (18:22 -0800)
commit25b36e8ff81a9c951085d6dd802a7534db476f5a
treee3f29647e029790be88f3cc32f2082b121b31ae4
parentae11707b830b206f4305310df3d873b72ed777a7
linker: Fix off-by-one error implicit array sizing

Arrays are zero based.  If the highest element accessed is 6, the
array needs to have 7 elements.

Fixes piglit test glsl-fs-implicit-array-size-03 and bugzilla #34198.

NOTE: This is a candidate for the 7.9 and 7.10 branches.
src/glsl/linker.cpp