From 5746637cfa10affd139b6c49a4e757ae3d5c6022 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 31 Jan 2005 20:52:37 -0700 Subject: tree-ssa-dom.c (record_cond): Pass correct variable type for last argument to htab_find_slot_with_hash. * tree-ssa-dom.c (record_cond): Pass correct variable type for last argument to htab_find_slot_with_hash. From-SVN: r94517 --- gcc/tree-ssa-dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-ssa-dom.c') diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 648ee56..244bfa2 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -1386,7 +1386,7 @@ record_cond (tree cond, tree value) initialize_hash_element (cond, value, element); slot = htab_find_slot_with_hash (avail_exprs, (void *)element, - element->hash, true); + element->hash, INSERT); if (*slot == NULL) { *slot = (void *) element; -- cgit v1.1