summaryrefslogtreecommitdiff
path: root/lib/Target/CellSPU
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-27 05:32:16 +0000
committerChris Lattner <sabre@nondot.org>2009-07-27 05:32:16 +0000
commit5fe575ff4fdefc1b003a009b1b9282526a26c237 (patch)
tree416ba3b4b1c715725a43935b710b6245dd809608 /lib/Target/CellSPU
parent1f5c9887544ac2cb39d48e35cc6fa7a7b73ed3b0 (diff)
downloadllvm-5fe575ff4fdefc1b003a009b1b9282526a26c237.tar.gz
llvm-5fe575ff4fdefc1b003a009b1b9282526a26c237.tar.bz2
llvm-5fe575ff4fdefc1b003a009b1b9282526a26c237.tar.xz
Eliminate SectionFlags, just embed a SectionKind into Section
instead and drive things based off of that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77184 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU')
-rw-r--r--lib/Target/CellSPU/SPUTargetAsmInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/CellSPU/SPUTargetAsmInfo.cpp b/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
index c4d354687f..2dcd37bfa7 100644
--- a/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
+++ b/lib/Target/CellSPU/SPUTargetAsmInfo.cpp
@@ -35,8 +35,7 @@ SPULinuxTargetAsmInfo::SPULinuxTargetAsmInfo(const SPUTargetMachine &TM) :
// BSS section needs to be emitted as ".section"
BSSSection = "\t.section\t.bss";
- BSSSection_ = getUnnamedSection("\t.section\t.bss",
- SectionFlags::Writable | SectionFlags::BSS);
+ BSSSection_ = getUnnamedSection("\t.section\t.bss", SectionKind::BSS);
SupportsDebugInformation = true;
NeedsSet = true;