diff options
Diffstat (limited to 'contrib/gcc/gcse.c')
-rw-r--r-- | contrib/gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/gcse.c b/contrib/gcc/gcse.c index d06a224..d785c7e 100644 --- a/contrib/gcc/gcse.c +++ b/contrib/gcc/gcse.c @@ -6445,7 +6445,7 @@ hoist_code (void) insn_inserted_p = 0; /* These tests should be the same as the tests above. */ - if (TEST_BIT (hoist_vbeout[bb->index], i)) + if (TEST_BIT (hoist_exprs[bb->index], i)) { /* We've found a potentially hoistable expression, now we look at every block BB dominates to see if it |