diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-07-26 20:23:23 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-07-26 20:23:23 +0000 |
| commit | 7e80097f6e5c1bd99ab27e28cefc276996f02bf3 (patch) | |
| tree | 31de6dfd67104ee48341dbf01d3bade8da165e55 /clang/lib/CodeGen/CodeGenFunction.h | |
| parent | 6284378fcd189872d0fd564de53691e8c219b948 (diff) | |
| download | bcm5719-llvm-7e80097f6e5c1bd99ab27e28cefc276996f02bf3.tar.gz bcm5719-llvm-7e80097f6e5c1bd99ab27e28cefc276996f02bf3.zip | |
implement codegen support for labels at the end of stmtexprs.
llvm-svn: 54100
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 7d11a74d8c0..5bf6bc1fea4 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -359,6 +359,7 @@ public: void EmitStmt(const Stmt *S); RValue EmitCompoundStmt(const CompoundStmt &S, bool GetLast = false, llvm::Value *AggLoc = 0, bool isAggVol = false); + void EmitLabel(const LabelStmt &S); // helper for EmitLabelStmt. void EmitLabelStmt(const LabelStmt &S); void EmitGotoStmt(const GotoStmt &S); void EmitIfStmt(const IfStmt &S); |

