diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-18 05:53:58 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-18 05:53:58 +0000 |
commit | 8d6b42e096702c36bd045a145c8dc7e1271c585d (patch) | |
tree | 961ee24b4324187e3871bc8ee1e5d4d46eacae89 /clang/lib/Analysis/GRSimpleVals.h | |
parent | eee1f57ceabb07224dce905c9370e1f1135581c3 (diff) | |
download | bcm5719-llvm-8d6b42e096702c36bd045a145c8dc7e1271c585d.tar.gz bcm5719-llvm-8d6b42e096702c36bd045a145c8dc7e1271c585d.zip |
Created ValueStateSet class to manage the creation of multiple states by a method.
Modified the new EvalBinOpNN to generate states instead of nodes. This is a much simpler interface and is what clients will want to do.
llvm-svn: 53750
Diffstat (limited to 'clang/lib/Analysis/GRSimpleVals.h')
-rw-r--r-- | clang/lib/Analysis/GRSimpleVals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRSimpleVals.h b/clang/lib/Analysis/GRSimpleVals.h index d86db51511c..fc20c3e5bc8 100644 --- a/clang/lib/Analysis/GRSimpleVals.h +++ b/clang/lib/Analysis/GRSimpleVals.h @@ -44,7 +44,7 @@ public: // Binary Operators. - virtual RVal EvalBinOp(GRExprEngine& Engine, BinaryOperator::Opcode Op, + virtual RVal EvalBinOp(ValueStateManager& StateMgr, BinaryOperator::Opcode Op, NonLVal L, NonLVal R); virtual RVal EvalBinOp(GRExprEngine& Engine, BinaryOperator::Opcode Op, |