From: Nick Lewycky Date: Wed, 7 Dec 2011 02:33:23 +0000 (+0000) Subject: Initialize these values, fixing the build in cases where stack realignment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e23fd561a3fa739936d9b8416f46aad19a05eb4;p=clang 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 --- 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";