diff options
author | Manman Ren <mren@apple.com> | 2013-03-26 18:29:15 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-03-26 18:29:15 +0000 |
commit | a8540819dfbf51da44f5366177f730ad58823070 (patch) | |
tree | b9c3be009230b5f7a97d58c8336f256e89a56373 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | a89be91f2e1fe711d06d782d0a1c3d188ce3b7aa (diff) | |
download | bcm5719-llvm-a8540819dfbf51da44f5366177f730ad58823070.tar.gz bcm5719-llvm-a8540819dfbf51da44f5366177f730ad58823070.zip |
Fix uninitialized read of CalleeWithThisReturn.
Initialize CalleeWithThisReturn to 0 in the constructor.
Also revert r170815 since checking CalleeWithThisReturn is faster.
PR15598
llvm-svn: 178053
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 473a1cba76c..2c3cabe9851 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -42,7 +42,8 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm, bool suppressNewContext) AutoreleaseResult(false), BlockInfo(0), BlockPointer(0), LambdaThisCaptureField(0), NormalCleanupDest(0), NextCleanupDestIndex(1), FirstBlockInfo(0), EHResumeBlock(0), ExceptionSlot(0), EHSelectorSlot(0), - DebugInfo(0), DisableDebugInfo(false), DidCallStackSave(false), + DebugInfo(0), DisableDebugInfo(false), CalleeWithThisReturn(0), + DidCallStackSave(false), IndirectBranch(0), SwitchInsn(0), CaseRangeBlock(0), UnreachableBlock(0), CXXABIThisDecl(0), CXXABIThisValue(0), CXXThisValue(0), CXXStructorImplicitParamDecl(0), CXXStructorImplicitParamValue(0), |