aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/tests/lower_jumps/lower_breaks_5.opt_test
blob: da9eef1105e1d48cbadd218313414499d58caf14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# This file was generated by create_test_cases.py.
#
# If a loop contains a conditional break at the bottom of it,
# it should not be lowered if it is in the else-clause, even if
# there are statements preceding the break.
../../glsl_test optpass --quiet --input-ir 'do_lower_jumps(0, 0, 0, 0, 1)' <<EOF
((declare (in) float b) (declare (out) float a) (declare (out) float c)
 (function main
  (signature void (parameters)
   ((loop () () () ()
     ((assign (x) (var_ref a) (constant float (1.000000)))
      (if (expression bool > (var_ref b) (constant float (0.000000))) ()
       ((assign (x) (var_ref c) (constant float (1.000000))) break))))))))
EOF