commit | 41f85462336ce32fad0bfd14a1c061dbe15a107b | [log] [tgz] |
---|---|---|
author | Peter Collingbourne <peter@pcc.me.uk> | Wed Feb 09 21:07:24 2011 +0000 |
committer | Peter Collingbourne <peter@pcc.me.uk> | Wed Feb 09 21:07:24 2011 +0000 |
tree | 083924e25dc84757ce0330c0d1e0df4f51be849b | |
parent | 9e2c81f00a0a2d62c7d9ef012da4fe2079224276 [diff] [blame] |
AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions llvm-svn: 125217
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 842a2d9..707cac4 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -644,6 +644,10 @@ VisitCallExpr(S); } +void StmtProfiler::VisitCUDAKernelCallExpr(CUDAKernelCallExpr *S) { + VisitCallExpr(S); +} + void StmtProfiler::VisitCXXNamedCastExpr(CXXNamedCastExpr *S) { VisitExplicitCastExpr(S); }