From 44e3d58b59099f5fd0e6f88893ce431171b3fef6 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 4 Jun 2009 08:08:21 +0000 Subject: Start removing uses of Expr::isConstant. - These should use cast<>, isa<>, or dyn_cast<> as appropriate (or better yet, changed to use ref when the type is known). git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72857 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Core/ImpliedValue.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/Core/ImpliedValue.h') diff --git a/lib/Core/ImpliedValue.h b/lib/Core/ImpliedValue.h index 51ec6e9b..cbc55dc5 100644 --- a/lib/Core/ImpliedValue.h +++ b/lib/Core/ImpliedValue.h @@ -29,8 +29,10 @@ namespace klee { typedef std::vector< std::pair, ref > > ImpliedValueList; namespace ImpliedValue { - void getImpliedValues(ref e, ref cvalue, ImpliedValueList &result); - void checkForImpliedValues(Solver *S, ref e, ref cvalue); + void getImpliedValues(ref e, ref cvalue, + ImpliedValueList &result); + void checkForImpliedValues(Solver *S, ref e, + ref cvalue); } } -- cgit 1.4.1