piglit/tests/glslparsertest/shaders/CorrectFull.frag: while(bool b = (test_float1 > test_float2)) gets Error: scalar/boolean expression expected for 'while' Changing it to: bool b; while(b = (test_float1 > test_float2)) gets the case pass. But GLSL spec (both 1.10 and 1.50) section 6.3 says: "Both the condition-expression and the init-expression can declare and initialize a variable", so the case should be allowed.
Fixed with glsl2 merge.
verified with mesa master d442a01ac14382d83cdaac87d2832315ceb3e963. CorrectFull.frag gets assertion now, but that'll be another bug.
the assertion error has been tracked at bug#29573
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.