ir_constant_expression: Remove bogus assert in ir_unop_abs case.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 9 Jul 2010 06:09:48 +0000 (23:09 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 14 Jul 2010 22:50:27 +0000 (15:50 -0700)
abs is defined for integral types; it's even implemented.

src/glsl/ir_constant_expression.cpp

index 0fe93ad..06d7dd8 100644 (file)
@@ -243,7 +243,6 @@ ir_constant_visitor::visit(ir_expression *ir)
       break;
 
    case ir_unop_abs:
-      assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
       for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
         switch (ir->type->base_type) {
         case GLSL_TYPE_UINT: