summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp
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
commit149465ea06451b9ec1881347b2dccd311ab32576 (patch)
tree67380d89f607e4f46c879187360723f98bca45ec /llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp
parent4ead0b9e1cfe52925dd9a8fef2ea9845396947df (diff)
downloadbcm5719-llvm-149465ea06451b9ec1881347b2dccd311ab32576.tar.gz
bcm5719-llvm-149465ea06451b9ec1881347b2dccd311ab32576.zip
Eliminate SectionFlags, just embed a SectionKind into Section
instead and drive things based off of that. llvm-svn: 77184
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp')
-rw-r--r--llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp b/llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp
index 12ae5528e7e..65d2f39a697 100644
--- a/llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp
+++ b/llvm/lib/Target/MSP430/MSP430TargetAsmInfo.cpp
@@ -18,6 +18,5 @@ MSP430TargetAsmInfo::MSP430TargetAsmInfo(const TargetMachine &TM)
: ELFTargetAsmInfo(TM) {
AlignmentIsInBytes = false;
- BSSSection_ = getUnnamedSection("\t.bss",
- SectionFlags::Writable | SectionFlags::BSS);
+ BSSSection_ = getUnnamedSection("\t.bss", SectionKind::BSS);
}
OpenPOWER on IntegriCloud