aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>2001-02-18 22:19:23 -0500
committerRichard Kenner <kenner@gcc.gnu.org>2001-02-18 22:19:23 -0500
commit8d444206b1acc6ac375c10cc82f0223ab2f05d98 (patch)
treec84d56e7615d51d3c0de8b9adcb70c71a1214583
parent63a262f14e64965d7fd38fbc64515bc9572dddcf (diff)
downloadgcc-8d444206b1acc6ac375c10cc82f0223ab2f05d98.zip
gcc-8d444206b1acc6ac375c10cc82f0223ab2f05d98.tar.gz
gcc-8d444206b1acc6ac375c10cc82f0223ab2f05d98.tar.bz2
Fix typo in last change
From-SVN: r39869
-rw-r--r--gcc/gcse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index a5c552c..4b5403a 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 ();