diff options
Diffstat (limited to 'ld/emultempl/ppc32elf.em')
-rw-r--r-- | ld/emultempl/ppc32elf.em | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/ppc32elf.em b/ld/emultempl/ppc32elf.em index 3befe75..9ff81f5 100644 --- a/ld/emultempl/ppc32elf.em +++ b/ld/emultempl/ppc32elf.em @@ -121,7 +121,7 @@ ppc_before_allocation (void) /* Turn on relaxation if executable sections have addresses that might make branches overflow. */ - if (!command_line.relax) + if (RELAXATION_DISABLED_BY_DEFAULT) { bfd_vma low = (bfd_vma) -1; bfd_vma high = 0; @@ -148,7 +148,7 @@ ppc_before_allocation (void) high = o->vma + o->rawsize - 1; } if (high > low && high - low > (1 << 25) - 1) - command_line.relax = TRUE; + ENABLE_RELAXATION; } } |