diff options
author | Francois Pichet <pichet2000@gmail.com> | 2010-12-08 22:35:30 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2010-12-08 22:35:30 +0000 |
commit | f187237d916afa97c491ac32fe98be7d335c5b63 (patch) | |
tree | 28daf88fb8a7b6fdfffc1716162497acdcedb831 /lib/AST/StmtProfile.cpp | |
parent | 259461d46a4f9505e1b609b0d4a25e1d54b39f79 (diff) |
Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@121298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtProfile.cpp')
-rw-r--r-- | lib/AST/StmtProfile.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp index abcda7303f..418b241009 100644 --- a/lib/AST/StmtProfile.cpp +++ b/lib/AST/StmtProfile.cpp @@ -359,12 +359,6 @@ void StmtProfiler::VisitStmtExpr(StmtExpr *S) { VisitExpr(S); } -void StmtProfiler::VisitTypesCompatibleExpr(TypesCompatibleExpr *S) { - VisitExpr(S); - VisitType(S->getArgType1()); - VisitType(S->getArgType2()); -} - void StmtProfiler::VisitShuffleVectorExpr(ShuffleVectorExpr *S) { VisitExpr(S); } |