aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-19 04:15:51 +0000
committerChris Lattner <sabre@nondot.org>2010-01-19 04:15:51 +0000
commit66fa6a2d40b8f00da36514afe521ca40f2b5bf39 (patch)
treed0d640044545f6d9c22f1083dd19324110282999 /lib
parentc07400c8451d6706a8581814784f17f1bcf027a2 (diff)
downloadexternal_llvm-66fa6a2d40b8f00da36514afe521ca40f2b5bf39.zip
external_llvm-66fa6a2d40b8f00da36514afe521ca40f2b5bf39.tar.gz
external_llvm-66fa6a2d40b8f00da36514afe521ca40f2b5bf39.tar.bz2
make TLOF subclassify BSS based on linkage type into private, external
and everything else (weak). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93846 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/TargetLoweringObjectFile.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Target/TargetLoweringObjectFile.cpp b/lib/Target/TargetLoweringObjectFile.cpp
index 7b00b33..77203e0 100644
--- a/lib/Target/TargetLoweringObjectFile.cpp
+++ b/lib/Target/TargetLoweringObjectFile.cpp
@@ -146,8 +146,13 @@ SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV,
return SectionKind::getCommon();
// Variable can be easily put to BSS section.
- if (isSuitableForBSS(GVar))
+ if (isSuitableForBSS(GVar)) {
+ if (GVar->hasLocalLinkage())
+ return SectionKind::getBSSLocal();
+ else if (GVar->hasExternalLinkage())
+ return SectionKind::getBSSExtern();
return SectionKind::getBSS();
+ }
Constant *C = GVar->getInitializer();
@@ -926,7 +931,7 @@ SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
// Put zero initialized globals with strong external linkage in the
// DATA, __common section with the .zerofill directive.
- if (Kind.isBSS() && GV->hasExternalLinkage())
+ if (Kind.isBSSExtern())
return DataCommonSection;
// Otherwise, just drop the variable in the normal data section.