diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-27 00:58:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-27 00:58:47 +0000 |
commit | 499cb3fcfb49da80bb9ed983598f3d5c5ae72e59 (patch) | |
tree | 627d02a35b103ed205dfc0566ecc3b7e02076d12 /lib/Target/TargetMachine.cpp | |
parent | ad165bec1d9c685b21abbc9a7f9b217a748528dd (diff) |
Enable the red zone on x86-64 by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r-- | lib/Target/TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index fd577c7438..49f1e4dfaa 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -169,7 +169,7 @@ static cl::opt<bool, true> DisableRedZoneOption("disable-red-zone", cl::desc("Do not emit code that uses the red zone."), cl::location(DisableRedZone), - cl::init(true)); + cl::init(false)); //--------------------------------------------------------------------------- // TargetMachine Class |