From 2ce663031f9846e5a001b7fd9135d72a328bb98d Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Tue, 22 Feb 2011 06:58:34 +0000 Subject: available_externally (hidden or not) GVs are always accessed via stubs. rdar://9027648. llvm-svn: 126191 --- llvm/lib/Target/ARM/ARMSubtarget.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'llvm/lib/Target/ARM') diff --git a/llvm/lib/Target/ARM/ARMSubtarget.cpp b/llvm/lib/Target/ARM/ARMSubtarget.cpp index 0bd740cfb28..1465984899c 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.cpp +++ b/llvm/lib/Target/ARM/ARMSubtarget.cpp @@ -171,7 +171,9 @@ ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV, // Materializable GVs (in JIT lazy compilation mode) do not require an extra // load from stub. - bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); + bool isDecl = GV->hasAvailableExternallyLinkage(); + if (GV->isDeclaration() && !GV->isMaterializable()) + isDecl = true; if (!isTargetDarwin()) { // Extra load is needed for all externally visible. -- cgit v1.2.3