diff options
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index c83d4f145f5..13155f3a6b5 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1005,7 +1005,7 @@ update_equiv_regs () reg_equiv[regno].loop_depth = loop_depth; /* Don't mess with things live during setjmp. */ - if (REG_LIVE_LENGTH (regno) >= 0) + if (REG_LIVE_LENGTH (regno) >= 0 && optimize) { /* Note that the statement below does not affect the priority in local-alloc! */ |