diff options
| author | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:08:34 +0000 |
|---|---|---|
| committer | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:08:34 +0000 |
| commit | 1c0675e155b932c2ec3bf3fd8c424c823632a29c (patch) | |
| tree | 9020e78f943f6c2f07a425cca9e5833d9a687c57 /clang/lib/AST/StmtProfile.cpp | |
| parent | 1d684c253f0eee3df231076f59b99ccaf8329fe4 (diff) | |
| download | bcm5719-llvm-1c0675e155b932c2ec3bf3fd8c424c823632a29c.tar.gz bcm5719-llvm-1c0675e155b932c2ec3bf3fd8c424c823632a29c.zip | |
Parsing/AST support for Structured Exception Handling
Patch authored by Sohail Somani.
Provide parsing and AST support for Windows structured exception handling.
llvm-svn: 130366
Diffstat (limited to 'clang/lib/AST/StmtProfile.cpp')
| -rw-r--r-- | clang/lib/AST/StmtProfile.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 7a3fc5417c4..17383c137a2 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp @@ -181,6 +181,18 @@ void StmtProfiler::VisitCXXForRangeStmt(CXXForRangeStmt *S) { VisitStmt(S); } +void StmtProfiler::VisitSEHTryStmt(SEHTryStmt *S) { + VisitStmt(S); +} + +void StmtProfiler::VisitSEHFinallyStmt(SEHFinallyStmt *S) { + VisitStmt(S); +} + +void StmtProfiler::VisitSEHExceptStmt(SEHExceptStmt *S) { + VisitStmt(S); +} + void StmtProfiler::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { VisitStmt(S); } |

