diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-04-30 22:13:05 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-04-30 22:13:05 +0000 |
commit | af67602e1491592b73f8909b26c8c2539009c8d7 (patch) | |
tree | 81ac6ebf2eac8aedbb15d31ca9eb39c3d0190328 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 60d5232be2dc049e5edac17c1b6e4847edb1b9ff (diff) | |
download | llvm-af67602e1491592b73f8909b26c8c2539009c8d7.zip llvm-af67602e1491592b73f8909b26c8c2539009c8d7.tar.gz llvm-af67602e1491592b73f8909b26c8c2539009c8d7.tar.bz2 |
Use 4 byte preferred aggregate alignment in datalayout on x86 Win32
llvm-svn: 236271
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index ff3efa1..f07548e 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -45,12 +45,13 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext) LambdaThisCaptureField(nullptr), NormalCleanupDest(nullptr), NextCleanupDestIndex(1), FirstBlockInfo(nullptr), EHResumeBlock(nullptr), ExceptionSlot(nullptr), EHSelectorSlot(nullptr), - AbnormalTerminationSlot(nullptr), SEHPointersDecl(nullptr), - DebugInfo(CGM.getModuleDebugInfo()), DisableDebugInfo(false), - DidCallStackSave(false), IndirectBranch(nullptr), PGO(cgm), - SwitchInsn(nullptr), SwitchWeights(nullptr), CaseRangeBlock(nullptr), - UnreachableBlock(nullptr), NumReturnExprs(0), NumSimpleReturnExprs(0), - CXXABIThisDecl(nullptr), CXXABIThisValue(nullptr), CXXThisValue(nullptr), + ChildAbnormalTerminationSlot(nullptr), AbnormalTerminationSlot(nullptr), + SEHPointersDecl(nullptr), DebugInfo(CGM.getModuleDebugInfo()), + DisableDebugInfo(false), DidCallStackSave(false), IndirectBranch(nullptr), + PGO(cgm), SwitchInsn(nullptr), SwitchWeights(nullptr), + CaseRangeBlock(nullptr), UnreachableBlock(nullptr), NumReturnExprs(0), + NumSimpleReturnExprs(0), CXXABIThisDecl(nullptr), + CXXABIThisValue(nullptr), CXXThisValue(nullptr), CXXDefaultInitExprThis(nullptr), CXXStructorImplicitParamDecl(nullptr), CXXStructorImplicitParamValue(nullptr), OutermostConditional(nullptr), CurLexicalScope(nullptr), TerminateLandingPad(nullptr), |