From: Ian Lynagh Date: Tue, 1 Jun 2010 20:42:11 +0000 (+0000) Subject: Add PPC_RELOC_LOCAL_SECTDIFF support; patch from PHO in #3654 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=ba0d4ac137c268397d469ef48684b3505faffab1 Add PPC_RELOC_LOCAL_SECTDIFF support; patch from PHO in #3654 --- diff --git a/rts/Linker.c b/rts/Linker.c index e951628..96b06c7 100644 --- a/rts/Linker.c +++ b/rts/Linker.c @@ -4278,7 +4278,8 @@ static int relocateSection( else if(scat->r_type == PPC_RELOC_SECTDIFF || scat->r_type == PPC_RELOC_LO16_SECTDIFF || scat->r_type == PPC_RELOC_HI16_SECTDIFF - || scat->r_type == PPC_RELOC_HA16_SECTDIFF) + || scat->r_type == PPC_RELOC_HA16_SECTDIFF + || scat->r_type == PPC_RELOC_LOCAL_SECTDIFF) #else else if(scat->r_type == GENERIC_RELOC_SECTDIFF || scat->r_type == GENERIC_RELOC_LOCAL_SECTDIFF)