i965: Silence signed/unsigned comparison warning
authorMatt Turner <mattst88@gmail.com>
Wed, 2 Aug 2017 23:17:05 +0000 (16:17 -0700)
committerMatt Turner <mattst88@gmail.com>
Mon, 21 Aug 2017 21:05:23 +0000 (14:05 -0700)
Reviewed-by: Scott D Phillips <scott.d.phillips@intel.com>
src/intel/compiler/test_eu_compact.cpp

index 39e7f1a27c38981aedec31cc15ef244614ec05f3..1ef7e5ae7f1966e4fd4ed9ac7a9e70998ef52221 100644 (file)
@@ -254,7 +254,7 @@ run_tests(const struct gen_device_info *devinfo)
    brw_init_compaction_tables(devinfo);
    bool fail = false;
 
-   for (int i = 0; i < ARRAY_SIZE(tests); i++) {
+   for (unsigned i = 0; i < ARRAY_SIZE(tests); i++) {
       for (int align_16 = 0; align_16 <= 1; align_16++) {
         struct brw_codegen *p = rzalloc(NULL, struct brw_codegen);
         brw_init_codegen(devinfo, p, p);