From: Eric Anholt Date: Wed, 17 Sep 2014 20:37:53 +0000 (-0700) Subject: vc4: Fix stray disable of the CSE pass. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b44a7a32232b509c29a40316dce98780e034e85a;p=mesa.git vc4: Fix stray disable of the CSE pass. Somehow I slipped this in with the original commit of CSE. --- diff --git a/src/gallium/drivers/vc4/vc4_opt_cse.c b/src/gallium/drivers/vc4/vc4_opt_cse.c index 33e17d73401..ef4818f09b8 100644 --- a/src/gallium/drivers/vc4/vc4_opt_cse.c +++ b/src/gallium/drivers/vc4/vc4_opt_cse.c @@ -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;