summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2007-04-25 14:50:40 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2007-04-25 14:50:40 +0000
commit305b8a5f62c9d027f3d8a870fc12fc2abf69aeea (patch)
tree3370259beebe41849043e03ce94c9303666fced2 /lib/Target
parent77d0f970b32d0eb62ca06dda19be42f2ffd341cd (diff)
downloadllvm-305b8a5f62c9d027f3d8a870fc12fc2abf69aeea.tar.gz
llvm-305b8a5f62c9d027f3d8a870fc12fc2abf69aeea.tar.bz2
llvm-305b8a5f62c9d027f3d8a870fc12fc2abf69aeea.tar.xz
remember to emit weak reference in one more case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36438 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/ARM/ARMAsmPrinter.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp
index 6822e63282..6e9a9038dc 100644
--- a/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -639,8 +639,13 @@ void ARMAsmPrinter::printCPInstOperand(const MachineInstr *MI, int OpNo,
if (MCPE.isMachineConstantPoolEntry())
EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
- else
+ else {
EmitGlobalConstant(MCPE.Val.ConstVal);
+ // remember to emit the weak reference
+ if (const GlobalValue *GV = dyn_cast<GlobalValue>(MCPE.Val.ConstVal))
+ if (GV->hasExternalWeakLinkage())
+ ExtWeakSymbols.insert(GV);
+ }
}
}