diff options
Diffstat (limited to 'gcc/loop-iv.c')
-rw-r--r-- | gcc/loop-iv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-iv.c b/gcc/loop-iv.c index 16e9a52697d..141b51fc322 100644 --- a/gcc/loop-iv.c +++ b/gcc/loop-iv.c @@ -304,7 +304,7 @@ latch_dominating_def (rtx reg, df_ref *def) for (adef = DF_REG_DEF_CHAIN (regno); adef; adef = DF_REF_NEXT_REG (adef)) { if (!bitmap_bit_p (df->blocks_to_analyze, DF_REF_BBNO (adef)) - || !bitmap_bit_p (bb_info->out, DF_REF_ID (adef))) + || !bitmap_bit_p (&bb_info->out, DF_REF_ID (adef))) continue; /* More than one reaching definition. */ |