summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-09-17 13:37:53 -0700
committerEric Anholt <eric@anholt.net>2014-09-17 14:21:24 -0700
commitb44a7a32232b509c29a40316dce98780e034e85a (patch)
treef2b33761496408f37bcb22c2e38fb9a4e1acc541
parentffeb77c7b0552a8624e46e65d6347240ac5ae84d (diff)
vc4: Fix stray disable of the CSE pass.
Somehow I slipped this in with the original commit of CSE.
-rw-r--r--src/gallium/drivers/vc4/vc4_opt_cse.c1
1 files changed, 0 insertions, 1 deletions
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;