i965/fs: Remove is_valid_3src().
authorMatt Turner <mattst88@gmail.com>
Wed, 12 Nov 2014 19:09:10 +0000 (11:09 -0800)
committerMatt Turner <mattst88@gmail.com>
Fri, 21 Nov 2014 18:26:44 +0000 (10:26 -0800)
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
src/mesa/drivers/dri/i965/brw_fs.cpp
src/mesa/drivers/dri/i965/brw_fs.h
src/mesa/drivers/dri/i965/brw_fs_visitor.cpp

index 4804b7dff71d1af2694acc45565c3f35ce051a70..054ff2c7944b86a5890b40578f07231f39d4b80d 100644 (file)
@@ -622,12 +622,6 @@ fs_reg::is_contiguous() const
    return stride == 1;
 }
 
-bool
-fs_reg::is_valid_3src() const
-{
-   return file == GRF || file == UNIFORM;
-}
-
 int
 fs_visitor::type_size(const struct glsl_type *type)
 {
index c4d8323f768ac6798892e4940a05dad4ba5120be..d4f663d2bebfd0f02b13b91599be41b9354dd332 100644 (file)
@@ -83,7 +83,6 @@ public:
    fs_reg(fs_visitor *v, const struct glsl_type *type);
 
    bool equals(const fs_reg &r) const;
-   bool is_valid_3src() const;
    bool is_contiguous() const;
 
    /** Smear a channel of the reg to all channels. */
index 578e938c6cd18c49f43660b4ed069b268a7231c3..b46a8fd709e063f72a2e6dd8803f5c1555c0af59 100644 (file)
@@ -514,7 +514,7 @@ fs_visitor::visit(ir_expression *ir)
         ir->operands[operand]->fprint(stderr);
          fprintf(stderr, "\n");
       }
-      assert(this->result.is_valid_3src());
+      assert(this->result.file == GRF || this->result.file == UNIFORM);
       op[operand] = this->result;
 
       /* Matrix expression operands should have been broken down to vector