diff options
author | Tareq A. Siraj <tareq.a.sriaj@intel.com> | 2013-04-16 18:53:08 +0000 |
---|---|---|
committer | Tareq A. Siraj <tareq.a.sriaj@intel.com> | 2013-04-16 18:53:08 +0000 |
commit | 24110cc73388ee0baec97bede6340477eb733dcc (patch) | |
tree | 773ae5e85fbe89d3fd4cb1ef400adf5e830d8901 /clang/tools/libclang/RecursiveASTVisitor.h | |
parent | 0de0dd49231a9613339b95c0e1e4a3838eeb6bb3 (diff) | |
download | bcm5719-llvm-24110cc73388ee0baec97bede6340477eb733dcc.tar.gz bcm5719-llvm-24110cc73388ee0baec97bede6340477eb733dcc.zip |
Implement CapturedStmt AST
CapturedStmt can be used to implement generic function outlining as described in
http://lists.cs.uiuc.edu/pipermail/cfe-dev/2013-January/027540.html.
CapturedStmt is not exposed to the C api.
Serialization and template support are pending.
Author: Wei Pan <wei.pan@intel.com>
Differential Revision: http://llvm-reviews.chandlerc.com/D370
llvm-svn: 179615
Diffstat (limited to 'clang/tools/libclang/RecursiveASTVisitor.h')
-rw-r--r-- | clang/tools/libclang/RecursiveASTVisitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/libclang/RecursiveASTVisitor.h b/clang/tools/libclang/RecursiveASTVisitor.h index 0312f1fbbd9..592f1687257 100644 --- a/clang/tools/libclang/RecursiveASTVisitor.h +++ b/clang/tools/libclang/RecursiveASTVisitor.h @@ -1839,7 +1839,7 @@ DEF_TRAVERSE_STMT(MSDependentExistsStmt, { DEF_TRAVERSE_STMT(ReturnStmt, { }) DEF_TRAVERSE_STMT(SwitchStmt, { }) DEF_TRAVERSE_STMT(WhileStmt, { }) - +DEF_TRAVERSE_STMT(CapturedStmt, { }) DEF_TRAVERSE_STMT(CXXDependentScopeMemberExpr, { TRY_TO(TraverseNestedNameSpecifierLoc(S->getQualifierLoc())); |