]> granicus.if.org Git - clang/commit
Convert GRExprEngine::VisitCallExpr() to use a worklist instead of recursion to evalu...
authorTed Kremenek <kremenek@apple.com>
Thu, 17 Dec 2009 20:06:29 +0000 (20:06 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 17 Dec 2009 20:06:29 +0000 (20:06 +0000)
commit3cead901aab394fe8e84953235959ece8002854f
tree7c721f2fead56ccca530562197dcb746f7d75132
parent5974ec518289a719fdd18122060bbcfe49d439e3
Convert GRExprEngine::VisitCallExpr() to use a worklist instead of recursion to evaluate the arguments of a CallExpr.  This simplifies the logic and makes it easier to read.  (it also avoids any issues with blowing out the stack if the CallExpr had a ridiculous number of arguments)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91613 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Analysis/PathSensitive/GRExprEngine.h
lib/Analysis/GRExprEngine.cpp