summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-23 07:21:06 +0000
committerChris Lattner <sabre@nondot.org>2010-01-23 07:21:06 +0000
commitf9f93e4388962b678fd59b7af5212d4cc0d38be2 (patch)
tree7533118fbe3bf30c1f6291cf882a8936a59e78f3 /lib/MC/MCAsmInfo.cpp
parent74670b26fc62dce36a9d1d78caa1d481cec5b2eb (diff)
downloadllvm-f9f93e4388962b678fd59b7af5212d4cc0d38be2.tar.gz
llvm-f9f93e4388962b678fd59b7af5212d4cc0d38be2.tar.bz2
llvm-f9f93e4388962b678fd59b7af5212d4cc0d38be2.tar.xz
resolve a fixme: the "nonexecutable stack directive" is actually
a .section. Switch to it with SwitchSection. However, I think that this directive should be safe on any ELF target. If so, we should hoist it up out of the X86 and SystemZ targets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmInfo.cpp')
-rw-r--r--lib/MC/MCAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp
index debccaf4b1..b96b4e9156 100644
--- a/lib/MC/MCAsmInfo.cpp
+++ b/lib/MC/MCAsmInfo.cpp
@@ -19,9 +19,9 @@
using namespace llvm;
MCAsmInfo::MCAsmInfo() {
+ HasSubsectionsViaSymbols = false;
HasMachoZeroFillDirective = false;
HasStaticCtorDtorReferenceInStaticMode = false;
- NonexecutableStackDirective = 0;
NeedsSet = false;
MaxInstLength = 4;
PCSymbol = "$";