summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/TreeTransform.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Sema/TreeTransform.h')
-rw-r--r--clang/lib/Sema/TreeTransform.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/clang/lib/Sema/TreeTransform.h b/clang/lib/Sema/TreeTransform.h
index 985f3072ef9..bba90191019 100644
--- a/clang/lib/Sema/TreeTransform.h
+++ b/clang/lib/Sema/TreeTransform.h
@@ -1292,17 +1292,6 @@ public:
Constraints, Clobbers, Exprs, EndLoc);
}
- /// Build a new compound statement.
- ///
- /// By default, performs semantic analysis to build the new statement.
- /// Subclasses may override this routine to provide different behavior.
- StmtResult RebuildMSLateParsedCompoundStmt(SourceLocation LB,
- SourceLocation RB,
- ArrayRef<Token> Tokens,
- StringRef Rep) {
- return getSema().ActOnMSLateParsedCompoundStmt(LB, RB, Tokens, Rep);
- }
-
/// \brief Build a new co_return statement.
///
/// By default, performs semantic analysis to build the new statement.
@@ -6617,16 +6606,6 @@ TreeTransform<Derived>::TransformMSAsmStmt(MSAsmStmt *S) {
TransformedExprs, S->getEndLoc());
}
-template <typename Derived>
-StmtResult TreeTransform<Derived>::TransformMSLateParsedCompoundStmt(
- MSLateParsedCompoundStmt *S) {
- if (SemaRef.CurContext->isDependentContext())
- return S;
- return getDerived().RebuildMSLateParsedCompoundStmt(
- S->getLocStart(), S->getLocEnd(), S->tokens(),
- S->getStringRepresentation());
-}
-
// C++ Coroutines TS
template<typename Derived>
OpenPOWER on IntegriCloud