summaryrefslogtreecommitdiff
path: root/ld/emultempl/ppc32elf.em
diff options
context:
space:
mode:
Diffstat (limited to 'ld/emultempl/ppc32elf.em')
-rw-r--r--ld/emultempl/ppc32elf.em6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/emultempl/ppc32elf.em b/ld/emultempl/ppc32elf.em
index b801df8697f..9918a48f3c1 100644
--- a/ld/emultempl/ppc32elf.em
+++ b/ld/emultempl/ppc32elf.em
@@ -136,12 +136,12 @@ ppc_before_allocation (void)
{
if ((o->flags & (SEC_ALLOC | SEC_CODE)) != (SEC_ALLOC | SEC_CODE))
continue;
- if (o->size == 0)
+ if (o->rawsize == 0)
continue;
if (low > o->vma)
low = o->vma;
- if (high < o->vma + o->size - 1)
- high = o->vma + o->size - 1;
+ if (high < o->vma + o->rawsize - 1)
+ high = o->vma + o->rawsize - 1;
}
if (high > low && high - low > (1 << 25) - 1)
command_line.relax = TRUE;