diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-06-19 23:23:19 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-06-19 23:23:19 +0000 |
commit | 19cee1871e3986c79a4408813f029121e896f11c (patch) | |
tree | 48872934782f50a816db5a8af57dd8e002bce9ef /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 11b3ba71760f219d92606f9b514c3869f7825a61 (diff) | |
download | llvm-19cee1871e3986c79a4408813f029121e896f11c.zip llvm-19cee1871e3986c79a4408813f029121e896f11c.tar.gz llvm-19cee1871e3986c79a4408813f029121e896f11c.tar.bz2 |
Revert r184205 and associated patches while investigating issue with broken buildbot (possible interaction with LTO)
<rdar://problem/14209661>
llvm-svn: 184384
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index b7e2086..7b18edf3 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -798,6 +798,10 @@ private: CGDebugInfo *DebugInfo; bool DisableDebugInfo; + /// If the current function returns 'this', use the field to keep track of + /// the callee that returns 'this'. + llvm::Value *CalleeWithThisReturn; + /// DidCallStackSave - Whether llvm.stacksave has been called. Used to avoid /// calling llvm.stacksave for multiple VLAs in the same scope. bool DidCallStackSave; |