diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-01-03 02:56:28 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-01-03 02:56:28 +0000 |
commit | 02aabbf96b1f22144afe2bec8ad480a9b803f6b8 (patch) | |
tree | 19d8b626f18b9fcfcced2d0cc001a0c5a63ce035 /lib/Target/Alpha | |
parent | 9848ced5d0eec8cbc44f9fbe5ce273189b0b9b2b (diff) | |
download | external_llvm-02aabbf96b1f22144afe2bec8ad480a9b803f6b8.zip external_llvm-02aabbf96b1f22144afe2bec8ad480a9b803f6b8.tar.gz external_llvm-02aabbf96b1f22144afe2bec8ad480a9b803f6b8.tar.bz2 |
Change MachineRelocation::DoesntNeedFnStub to NeedStub. This fields will be used
for non-function GV relocations that require function address stubs (e.g. Mac OS X in non-static mode).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45527 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha')
-rw-r--r-- | lib/Target/Alpha/AlphaCodeEmitter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaCodeEmitter.cpp b/lib/Target/Alpha/AlphaCodeEmitter.cpp index 155c863..93ef28c 100644 --- a/lib/Target/Alpha/AlphaCodeEmitter.cpp +++ b/lib/Target/Alpha/AlphaCodeEmitter.cpp @@ -196,7 +196,8 @@ int AlphaCodeEmitter::getMachineOpValue(MachineInstr &MI, MachineOperand &MO) { if (MO.isGlobalAddress()) MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc, MO.getGlobal(), Offset, - false, useGOT)); + isa<Function>(MO.getGlobal()), + useGOT)); else if (MO.isExternalSymbol()) MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(), Reloc, MO.getSymbolName(), |