aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-31 22:09:40 +0000
committerChris Lattner <sabre@nondot.org>2007-08-31 22:09:40 +0000
commit3379320c10001d7e1ee5d7e7142c417f797cfe82 (patch)
treeab61f3194ffcd461d76407917bf40536d06671ee /CodeGen/CodeGenFunction.h
parent98414c1b7d1944a57156d52e29bd41c005de09ac (diff)
implement code generation for scalar stmt expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r--CodeGen/CodeGenFunction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index af8d80bbb2..a597f43268 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -265,7 +265,7 @@ public:
//===--------------------------------------------------------------------===//
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);