diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-12-06 03:33:03 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-12-06 03:33:03 +0000 |
commit | 4e785c908ae01519d3592eae2828e2cc94fb02eb (patch) | |
tree | 9fbf4cdb3f97dc95aeaf3ce54121567713e2f05f /include/clang/Frontend/CodeGenOptions.h | |
parent | 68805fef77978e69a14584148a3c6a4239e34171 (diff) |
Stack realignment is a tristate. Add -mno-stackrealign to turn off all stack
realignment, even with locals with alignment exceeding the ABI guarantee.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145909 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CodeGenOptions.h')
-rw-r--r-- | include/clang/Frontend/CodeGenOptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h index 091246703c..f15125e016 100644 --- a/include/clang/Frontend/CodeGenOptions.h +++ b/include/clang/Frontend/CodeGenOptions.h @@ -105,8 +105,8 @@ public: unsigned VerifyModule : 1; /// Control whether the module should be run /// through the LLVM Verifier. - unsigned RealignStack : 1; /// Controls whether stack frame should be - /// readjusted to the desired alignment. + unsigned StackRealignment : 1; /// Control whether to permit stack + /// realignment. unsigned StackAlignment; /// Overrides default stack alignment, /// if not 0. |