diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-12-07 02:33:23 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-12-07 02:33:23 +0000 |
commit | 2e23fd561a3fa739936d9b8416f46aad19a05eb4 (patch) | |
tree | 4e53547e0b0c8b6caf24f8ed4758a45b9970b28b /include/clang/Frontend/CodeGenOptions.h | |
parent | 587986efc5ca409da3ebf0a4ab7f72ebf50a3ab9 (diff) |
Initialize these values, fixing the build in cases where stack realignment
actually occurs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/CodeGenOptions.h')
-rw-r--r-- | include/clang/Frontend/CodeGenOptions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h index f15125e016..e6462c0844 100644 --- a/include/clang/Frontend/CodeGenOptions.h +++ b/include/clang/Frontend/CodeGenOptions.h @@ -203,6 +203,8 @@ public: UnwindTables = 0; UseRegisterSizedBitfieldAccess = 0; VerifyModule = 1; + StackRealignment = 0; + StackAlignment = 0; Inlining = NoInlining; RelocationModel = "pic"; |