OSDN Git Service

i965: silence signed/unsigned comparison warning
authorBrian Paul <brianp@vmware.com>
Sat, 15 Oct 2011 22:36:11 +0000 (16:36 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 19 Oct 2011 19:54:42 +0000 (13:54 -0600)
Reviewed-by: Paul Berry <stereotype441@gmail.com>
src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp

index e003020..0ea6d31 100644 (file)
@@ -1549,7 +1549,8 @@ vec4_visitor::try_rewrite_rhs_to_dst(ir_assignment *ir,
     * potentially reswizzle the operands of many instructions so that
     * we could handle out of order channels, but don't yet.
     */
-   for (int i = 0; i < 4; i++) {
+
+   for (unsigned i = 0; i < 4; i++) {
       if (dst.writemask & (1 << i)) {
         if (!(last_rhs_inst->dst.writemask & (1 << i)))
            return false;