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

« back to all changes in this revision

Viewing changes to src/glsl/tests/lower_jumps/lower_unified_returns.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 aa) (declare (in) float ab) (declare (in) float b)
 
2
 (declare (in) float c)
 
3
 (function main
 
4
  (signature void (parameters)
 
5
   ((declare (temporary) bool execute_flag)
 
6
    (assign (x) (var_ref execute_flag) (constant bool (1)))
 
7
    (declare (temporary) bool return_flag)
 
8
    (assign (x) (var_ref return_flag) (constant bool (0)))
 
9
    (if (expression bool > (var_ref aa) (constant float (0.000000)))
 
10
     ((if (expression bool > (var_ref ab) (constant float (0.000000)))
 
11
       ((assign (x) (var_ref return_flag) (constant bool (1)))
 
12
        (assign (x) (var_ref execute_flag) (constant bool (0))))
 
13
       ()))
 
14
     ())
 
15
    (if (var_ref execute_flag)
 
16
     ((if (expression bool > (var_ref b) (constant float (0.000000)))
 
17
       ((if (expression bool > (var_ref c) (constant float (0.000000))) () ())
 
18
        (assign (x) (var_ref return_flag) (constant bool (1)))
 
19
        (assign (x) (var_ref execute_flag) (constant bool (0))))
 
20
       ()))
 
21
     ())))))