Fix #4867 (updated; corrects address calculation)
authorgwright@antiope.com <unknown>
Mon, 14 Feb 2011 15:09:24 +0000 (15:09 +0000)
committergwright@antiope.com <unknown>
Mon, 14 Feb 2011 15:09:24 +0000 (15:09 +0000)
This is a corrected fix for ticket #4867, "ghci displays negative floats
incorrectly".  The previous patch sometimes gave incorrect offset to values
in the __const section of the __TEXT segment.  The new patch arranges a zero
fixup for non-external, not-global offset table signed relocations.  This
is apparently what is required, though documentation on this point is scarce.

With this change Doubles are negated properly, because the sign bit mask
is loaded from the correct offset.  This was tested both on HEAD and the 7.0
branch.

rts/Linker.c

index ee7a9c9..2a45aac 100644 (file)
@@ -4690,7 +4690,12 @@ static int relocateSection(
         }
         else
         {
-           value = relocateAddress(oc, nSections, sections, reloc->r_address);
+           // If the relocation is not through the global offset table
+           // or external, then set the value to the baseValue.  This
+           // will leave displacements into the __const section
+           // unchanged (as they ought to be).
+
+           value = baseValue;
         }
 
         IF_DEBUG(linker, debugBelch("relocateSection: value = %p\n", (void *)value));