summaryrefslogtreecommitdiff
path: root/lib/CodeGen/ELFWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-26 07:00:12 +0000
committerChris Lattner <sabre@nondot.org>2009-07-26 07:00:12 +0000
commit4c50922f6be96fdb1e9a924aeeecf91638e2c52b (patch)
tree6178770be2c961efdb66096dca312636def13129 /lib/CodeGen/ELFWriter.cpp
parent37939c910fe17eef328736b3c09b6cd262095a87 (diff)
downloadllvm-4c50922f6be96fdb1e9a924aeeecf91638e2c52b.tar.gz
llvm-4c50922f6be96fdb1e9a924aeeecf91638e2c52b.tar.bz2
llvm-4c50922f6be96fdb1e9a924aeeecf91638e2c52b.tar.xz
make SectionKind know whether a symbol is weak or not in addition
to its classification. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77140 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r--lib/CodeGen/ELFWriter.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp
index 97b7ff0c8d..c0e7b93cf1 100644
--- a/lib/CodeGen/ELFWriter.cpp
+++ b/lib/CodeGen/ELFWriter.cpp
@@ -157,14 +157,16 @@ ELFSection &ELFWriter::getConstantPoolSection(MachineConstantPoolEntry &CPE) {
SectionKind Kind;
switch (CPE.getRelocationInfo()) {
default: llvm_unreachable("Unknown section kind");
- case 2: Kind = SectionKind::get(SectionKind::ReadOnlyWithRel); break;
- case 1: Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal); break;
+ case 2: Kind = SectionKind::get(SectionKind::ReadOnlyWithRel,false); break;
+ case 1:
+ Kind = SectionKind::get(SectionKind::ReadOnlyWithRelLocal,false);
+ break;
case 0:
switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
- case 4: Kind = SectionKind::get(SectionKind::MergeableConst4); break;
- case 8: Kind = SectionKind::get(SectionKind::MergeableConst8); break;
- case 16: Kind = SectionKind::get(SectionKind::MergeableConst16); break;
- default: Kind = SectionKind::get(SectionKind::MergeableConst); break;
+ case 4: Kind = SectionKind::get(SectionKind::MergeableConst4,false); break;
+ case 8: Kind = SectionKind::get(SectionKind::MergeableConst8,false); break;
+ case 16: Kind = SectionKind::get(SectionKind::MergeableConst16,false);break;
+ default: Kind = SectionKind::get(SectionKind::MergeableConst,false); break;
}
}