aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-03-08 20:23:55 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-03-08 20:23:55 +0000
commit3b25fbfeafe195ba777acedd7b79d5b74ff8927e (patch)
tree4b574a210be7a5aa49dde74b5ddceb796fd54f82 /gcc/gcse.c
parent189ae0f4d5e55f86b2ad0e7b307ba1d8dfbeed74 (diff)
downloadgcc-3b25fbfeafe195ba777acedd7b79d5b74ff8927e.zip
gcc-3b25fbfeafe195ba777acedd7b79d5b74ff8927e.tar.gz
gcc-3b25fbfeafe195ba777acedd7b79d5b74ff8927e.tar.bz2
* gcse.c (insert_insn_end_bb): Fix typo in last change.
From-SVN: r50453
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index d78f82e..6efd39b 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -4626,7 +4626,7 @@ insert_insn_end_bb (expr, bb, pre)
/* It should always be the case that we can put these instructions
anywhere in the basic block with performing PRE optimizations.
Check this. */
- if (GET_CODE (insn) == insn && pre
+ if (GET_CODE (insn) == INSN && pre
&& !TEST_BIT (antloc[bb->index], expr->bitmap_index)
&& !TEST_BIT (transp[bb->index], expr->bitmap_index))
abort ();