Fix the failures in the PPC JIT by marking relocation entries for
authorChris Lattner <sabre@nondot.org>
Mon, 21 Jan 2008 22:27:27 +0000 (22:27 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Jan 2008 22:27:27 +0000 (22:27 +0000)
external symbols (e.g. 'fmod') as needing a stub.  This regression
was introduced by Evan's jit patch here:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20071231/056749.html

With this fixed, the two ExecutionEngine failures are passing on ppc,
and the ppc jit works on freebench and olden.

This should be pulled into the 2.2 release branch.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46222 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineRelocation.h

index 689881b29163df8d06ea063fba02a43b8d616b36..fa23a4d1c4b0f0d602d5eb0c72859964cf3cf063 100644 (file)
@@ -141,7 +141,7 @@ public:
     Result.ConstantVal = cst;
     Result.TargetReloType = RelocationType;
     Result.AddrType = isExtSym;
-    Result.NeedStub = false;
+    Result.NeedStub = true;
     Result.GOTRelative = GOTrelative;
     Result.Target.ExtSym = ES;
     return Result;