diff options
Diffstat (limited to 'gcc/loop-unswitch.c')
-rw-r--r-- | gcc/loop-unswitch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/loop-unswitch.c b/gcc/loop-unswitch.c index b7c7f27..c1971c6 100644 --- a/gcc/loop-unswitch.c +++ b/gcc/loop-unswitch.c @@ -141,7 +141,7 @@ may_unswitch_on_p (struct loops *loops, basic_block bb, struct loop *loop, /* Condition must be invariant. We use just a stupid test of invariantness of the condition: all used regs must not be modified inside loop body. */ - test = get_condition (bb->end, NULL); + test = get_condition (bb->end, NULL, true); if (!test) return false; @@ -248,7 +248,7 @@ unswitch_single_loop (struct loops *loops, struct loop *loop, return; } - if (!(cond = get_condition (bbs[i]->end, &split_before))) + if (!(cond = get_condition (bbs[i]->end, &split_before, true))) abort (); rcond = reversed_condition (cond); |