diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-02-09 03:32:31 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-02-09 03:32:31 +0000 |
commit | 4c5d8afd100189b6cce4fd89bfb8aec5700acb50 (patch) | |
tree | 82fefe6b9b44cfee1a74e99e7267dfd598c4f5eb /lib/CodeGen/CodeGenFunction.h | |
parent | b4e5e286a5cd156247720b1eb204abaa8e09568d (diff) |
Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150146 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 2c61d22f34..e9766ab933 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2400,6 +2400,8 @@ public: void EmitCXXThrowExpr(const CXXThrowExpr *E); + void EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Dest); + RValue EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest = 0); //===--------------------------------------------------------------------===// |