diff options
| author | Alp Toker <alp@nuanti.com> | 2014-01-01 05:57:51 +0000 |
|---|---|---|
| committer | Alp Toker <alp@nuanti.com> | 2014-01-01 05:57:51 +0000 |
| commit | 95e7ff2ed1e6e884e88d8210988fcb7bb5a5e4e0 (patch) | |
| tree | 23da4a95485ef254405e07738d6471c375b70ca3 /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
| parent | 383d2c478cdd1f688a2e0d71a8867eef33316c0a (diff) | |
| download | bcm5719-llvm-95e7ff2ed1e6e884e88d8210988fcb7bb5a5e4e0.tar.gz bcm5719-llvm-95e7ff2ed1e6e884e88d8210988fcb7bb5a5e4e0.zip | |
Eliminate UnaryTypeTraitExpr
Remove UnaryTypeTraitExpr and switch all remaining type trait related handling
over to TypeTraitExpr.
The UTT/BTT/TT enum prefix and evaluation code is retained pending further
cleanup.
This is part of the ongoing work to unify type traits following the removal of
BinaryTypeTraitExpr in r197273.
llvm-svn: 198271
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index e7b1e1fde8d..ad97801cc0e 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -663,7 +663,6 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::MSPropertyRefExprClass: case Stmt::CXXUnresolvedConstructExprClass: case Stmt::DependentScopeDeclRefExprClass: - case Stmt::UnaryTypeTraitExprClass: case Stmt::TypeTraitExprClass: case Stmt::ArrayTypeTraitExprClass: case Stmt::ExpressionTraitExprClass: |

