diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-23 18:50:12 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-23 18:50:12 +0000 |
commit | dd0dfdf8beea667769fe00cd5a7126404922dbab (patch) | |
tree | 214332f15f9f7689d677798e43b71cc6b3ad4606 /lib/Target/TargetMachine.cpp | |
parent | 96aa78c8c5ef1a5f268539c9edc86569b436d573 (diff) |
Initialize MCNoExecStack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r-- | lib/Target/TargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index c4790a2899..d579d95a99 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -220,6 +220,7 @@ FunctionSections("ffunction-sections", TargetMachine::TargetMachine(const Target &T) : TheTarget(T), AsmInfo(0), MCRelaxAll(false), + MCNoExecStack(false), MCUseLoc(true) { // Typically it will be subtargets that will adjust FloatABIType from Default // to Soft or Hard. |