[cfe-commits] r146013 - /cfe/trunk/include/clang/Frontend/CodeGenOptions.h
Nick Lewycky
nicholas at mxc.ca
Tue Dec 6 18:33:23 PST 2011
Author: nicholas
Date: Tue Dec 6 20:33:23 2011
New Revision: 146013
URL: http://llvm.org/viewvc/llvm-project?rev=146013&view=rev
Log:
Initialize these values, fixing the build in cases where stack realignment
actually occurs.
Modified:
cfe/trunk/include/clang/Frontend/CodeGenOptions.h
Modified: cfe/trunk/include/clang/Frontend/CodeGenOptions.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CodeGenOptions.h?rev=146013&r1=146012&r2=146013&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/CodeGenOptions.h (original)
+++ cfe/trunk/include/clang/Frontend/CodeGenOptions.h Tue Dec 6 20:33:23 2011
@@ -203,6 +203,8 @@
UnwindTables = 0;
UseRegisterSizedBitfieldAccess = 0;
VerifyModule = 1;
+ StackRealignment = 0;
+ StackAlignment = 0;
Inlining = NoInlining;
RelocationModel = "pic";
More information about the cfe-commits
mailing list