~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/glsl/tests/lower_jumps/lower_breaks_6.opt_test.expected

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
((declare (in) float a) (declare (in) float ba) (declare (in) float bb)
 
2
 (declare (in) float ca)
 
3
 (declare (in) float cb)
 
4
 (function main
 
5
  (signature void (parameters)
 
6
   ((declare (temporary) bool break_flag)
 
7
    (assign (x) (var_ref break_flag) (constant bool (0)))
 
8
    (loop () () () ()
 
9
     ((declare (temporary) bool execute_flag)
 
10
      (assign (x) (var_ref execute_flag) (constant bool (1)))
 
11
      (if (expression bool > (var_ref a) (constant float (0.000000)))
 
12
       ((if (expression bool > (var_ref ba) (constant float (0.000000)))
 
13
         ((if (expression bool > (var_ref bb) (constant float (0.000000)))
 
14
           ((assign (x) (var_ref execute_flag) (constant bool (0))))
 
15
           ()))
 
16
         ())
 
17
        (if (var_ref execute_flag)
 
18
         ((if (expression bool > (var_ref ca) (constant float (0.000000)))
 
19
           ((if (expression bool > (var_ref cb) (constant float (0.000000)))
 
20
             ((assign (x) (var_ref break_flag) (constant bool (1)))
 
21
              (assign (x) (var_ref execute_flag) (constant bool (0))))
 
22
             ()))
 
23
           ()))
 
24
         ()))
 
25
       ())
 
26
      (if (var_ref execute_flag)
 
27
       ((assign (x) (var_ref break_flag) (constant bool (1))))
 
28
       ())
 
29
      (if (var_ref break_flag) (break) ())))))))