diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-07-27 01:15:02 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-07-27 01:15:02 +0000 |
commit | 41c98d9dc3af430abb5e573550a18eca3211f2d6 (patch) | |
tree | ff87cacd6817b3c6e1ee05f137604914e13fdf6e /clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | de76c92b15aec01f01647a7a3b6ff141c799feb0 (diff) | |
download | bcm5719-llvm-41c98d9dc3af430abb5e573550a18eca3211f2d6.tar.gz bcm5719-llvm-41c98d9dc3af430abb5e573550a18eca3211f2d6.zip |
[analyzer] Look through SubstNonTypeTemplateParmExprs.
We were treating this like a CXXDefaultArgExpr, but
SubstNonTypeTemplateParmExpr actually appears when a template is
instantiated, i.e. we have all the information necessary to evaluate it.
This allows us to inline functions like llvm::array_lengthof.
<rdar://problem/11949235>
llvm-svn: 160846
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp index d1ee60001e1..7db519c5781 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -528,7 +528,6 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, // We don't handle default arguments either yet, but we can fake it // for now by just skipping them. - case Stmt::SubstNonTypeTemplateParmExprClass: case Stmt::CXXDefaultArgExprClass: break; @@ -622,6 +621,7 @@ void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred, case Stmt::StringLiteralClass: case Stmt::ObjCStringLiteralClass: case Stmt::CXXBindTemporaryExprClass: + case Stmt::SubstNonTypeTemplateParmExprClass: case Stmt::CXXNullPtrLiteralExprClass: { Bldr.takeNodes(Pred); ExplodedNodeSet preVisit; |