mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
glsl/tests/lower_jumps: fix generated sexpr's for loops
In 088494aa (as well as other commits in the series) Paul Berry modified
the tests for lower_jumps to account for the fact that the s-expression
for the loop IR instruction changed from
(loop () () () () (statements...)) to (loop (statements...)), but he
forgot to update create_test_cases.py which he used to create the tests.
Fix that, so that now create_test_cases.py is synced with the generated
tests.
Signed-off-by: Connor Abbott <cwabbott0@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
bbaec0f76c
commit
6e24111b9c
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ def loop(statements):
|
|||
body.
|
||||
"""
|
||||
check_sexp(statements)
|
||||
return [['loop', [], [], [], [], statements]]
|
||||
return [['loop', statements]]
|
||||
|
||||
def declare_temp(var_type, var_name):
|
||||
"""Create a declaration of the form
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue