diff options
author | Brian Paul <[email protected]> | 2011-10-15 16:36:11 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-19 13:54:42 -0600 |
commit | 3560027977804a3ac4ae8e6c9390f0936f7f7a1a (patch) | |
tree | 0d7974956f2bf26049c064ef16863b96dfcf16f4 /src/mesa/drivers | |
parent | d89c6689df045bdd1760174bf33ea33190f6c43d (diff) |
i965: silence signed/unsigned comparison warning
Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp index e0030206863..0ea6d317e09 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp @@ -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; |