summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2015-01-20 14:19:29 -0800
committerEric Anholt <[email protected]>2015-01-20 14:19:29 -0800
commitb368c91f261db140ebdb143c894d4921aa320655 (patch)
treeb77a6a6937fd98169ae332e153b57c3bc9a1411a /src/gallium/drivers/vc4
parentfd6e18d651da4022df2bef6111900221150798bb (diff)
vc4: Fix build since 8ed5305d28d9309d651dfec3fbf4349854694694
Diffstat (limited to 'src/gallium/drivers/vc4')
-rw-r--r--src/gallium/drivers/vc4/vc4_opt_cse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_opt_cse.c b/src/gallium/drivers/vc4/vc4_opt_cse.c
index aff777beb47..c11c90efcdc 100644
--- a/src/gallium/drivers/vc4/vc4_opt_cse.c
+++ b/src/gallium/drivers/vc4/vc4_opt_cse.c
@@ -106,7 +106,7 @@ vc4_find_cse(struct vc4_compile *c, struct hash_table *ht,
if (!alloc_key)
return NULL;
memcpy(alloc_key, &key, sizeof(*alloc_key));
- _mesa_hash_table_insert_with_hash(ht, hash, alloc_key, inst);
+ _mesa_hash_table_insert_pre_hashed(ht, hash, alloc_key, inst);
if (debug) {
fprintf(stderr, "Added to CSE HT: ");