* gcse.c (find_rtx_in_ldst): Handle NULL pre_ldst_table.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106829
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-11-12 Richard Guenther <rguenther@suse.de>
+
+ * gcse.c (find_rtx_in_ldst): Handle NULL pre_ldst_table.
+
2005-11-12 Jan Hubicka <jh@suse.cz>
* expr.c (expand_expr_real_1): <MAX_EXPR, MIN_EXPR>: Canonicalize
{
struct ls_expr e;
void **slot;
+ if (!pre_ldst_table)
+ return NULL;
e.pattern = x;
slot = htab_find_slot (pre_ldst_table, &e, NO_INSERT);
if (!slot || ((struct ls_expr *)*slot)->invalid)