implement code generation for scalar stmt expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41656 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index af8d80b..a597f43 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -265,7 +265,7 @@
//===--------------------------------------------------------------------===//
void EmitStmt(const Stmt *S);
- void EmitCompoundStmt(const CompoundStmt &S);
+ RValue EmitCompoundStmt(const CompoundStmt &S, bool GetLast = false);
void EmitLabelStmt(const LabelStmt &S);
void EmitGotoStmt(const GotoStmt &S);
void EmitIfStmt(const IfStmt &S);