cl: Don't use device_infos if num_device_infos == 0
[piglit.git] / tests / glslparsertest / glsl2 / array-23.vert
blobdf09137f681e2c722fc2433259e4cde70d44fccd
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.10
4 // [end config]
6 void main()
8     /* Array sizes greater than 256 trigger an assertion in the Mesa
9        7.8 compiler.
10      */
11     int a[257];
13     gl_Position = gl_Vertex;