vc4: Fix stray disable of the CSE pass.
authorEric Anholt <eric@anholt.net>
Wed, 17 Sep 2014 20:37:53 +0000 (13:37 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 17 Sep 2014 21:21:24 +0000 (14:21 -0700)
Somehow I slipped this in with the original commit of CSE.

src/gallium/drivers/vc4/vc4_opt_cse.c

index 33e17d73401cd141267b6ef7b5589782f1ffe336..ef4818f09b89eb7edecae56b1f4ea66a8dbfc445 100644 (file)
@@ -124,7 +124,6 @@ qir_opt_cse(struct vc4_compile *c)
         struct qinst *last_sf = NULL;
         uint32_t sf_count = 0, r4_count = 0;
 
-        return false;
         struct hash_table *ht = _mesa_hash_table_create(NULL, inst_key_equals);
         if (!ht)
                 return false;