glsl/loops: Get rid of lower_bounded_loops and ir_loop::normative_bound.
Now that loop_controls no longer creates normatively bound loops, there is no need for ir_loop::normative_bound or the lower_bounded_loops pass. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
@@ -523,10 +523,7 @@ ir_print_visitor::visit(ir_if *ir)
|
||||
void
|
||||
ir_print_visitor::visit(ir_loop *ir)
|
||||
{
|
||||
printf("(loop (");
|
||||
if (ir->normative_bound >= 0)
|
||||
printf("%d", ir->normative_bound);
|
||||
printf(") (\n");
|
||||
printf("(loop (\n");
|
||||
indentation++;
|
||||
|
||||
foreach_iter(exec_list_iterator, iter, ir->body_instructions) {
|
||||
|
Reference in New Issue
Block a user