diff options
Diffstat (limited to 'gcc/loop-unswitch.c')
-rw-r--r-- | gcc/loop-unswitch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-unswitch.c b/gcc/loop-unswitch.c index 8f1f54f..08780f0 100644 --- a/gcc/loop-unswitch.c +++ b/gcc/loop-unswitch.c @@ -196,7 +196,7 @@ may_unswitch_on (basic_block bb, struct loop *loop, rtx *cinsn) return NULL_RTX; /* Condition must be invariant. */ - test = get_condition (BB_END (bb), &at, true); + test = get_condition (BB_END (bb), &at, true, false); if (!test) return NULL_RTX; |