i965/fs: Get rid of an unused variable in emit_barrier()
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 23 Jun 2015 22:39:42 +0000 (15:39 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Wed, 24 Jun 2015 00:06:05 +0000 (17:06 -0700)
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
src/mesa/drivers/dri/i965/brw_fs_visitor.cpp

index ea2934167925bea712e91460f6f812d7c042fb6b..9a4bad6bcf580f220565eacb6c2b70508d7ec9f3 100644 (file)
@@ -1963,11 +1963,11 @@ fs_visitor::emit_barrier()
    fs_reg payload = fs_reg(GRF, alloc.allocate(1), BRW_REGISTER_TYPE_UD);
 
    /* Clear the message payload */
-   fs_inst *inst = bld.exec_all().MOV(payload, fs_reg(0u));
+   bld.exec_all().MOV(payload, fs_reg(0u));
 
    /* Copy bits 27:24 of r0.2 (barrier id) to the message payload reg.2 */
    fs_reg r0_2 = fs_reg(retype(brw_vec1_grf(0, 2), BRW_REGISTER_TYPE_UD));
-   inst = bld.exec_all().AND(component(payload, 2), r0_2, fs_reg(0x0f000000u));
+   bld.exec_all().AND(component(payload, 2), r0_2, fs_reg(0x0f000000u));
 
    /* Emit a gateway "barrier" message using the payload we set up, followed
     * by a wait instruction.