From: kenner Date: Mon, 19 Feb 2001 03:19:23 +0000 (+0000) Subject: Fix typo in last change X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=bc6dafd41fce9f51a41205c30fdbba2fbcff8178;hp=fe0c844351d339c2617f692634085e9f2cc141b0;p=pf3gnuchains%2Fgcc-fork.git Fix typo in last change git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39869 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/gcse.c b/gcc/gcse.c index a5c552c376e..4b5403a8c3a 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -4307,7 +4307,7 @@ process_insert_insn (expr) /* Otherwise, make a new insn to compute this expression and make sure the insn will be recognized (this also adds any needed CLOBBERs). Copy the expression to make sure we don't have any sharing issues. */ - if (insn_invalid_p (emit_insn (gen_rtx_SET (VOIDmode, reg, exp)))) + else if (insn_invalid_p (emit_insn (gen_rtx_SET (VOIDmode, reg, exp)))) abort (); pat = gen_sequence ();