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 | c5efca47fc1944bae13fa54da1873548e9a4710e (patch) | |
tree | 0cda552d030084041335b27f4c492c87ef86e42e /llvm/lib/Target/TargetMachine.cpp | |
parent | 148141c98f9b8f39e756e60f148293944d7b7add (diff) | |
download | bcm5719-llvm-c5efca47fc1944bae13fa54da1873548e9a4710e.tar.gz bcm5719-llvm-c5efca47fc1944bae13fa54da1873548e9a4710e.zip |
Initialize MCNoExecStack.
llvm-svn: 124079
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index c4790a28993..d579d95a99c 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/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. |