From 6fdbb198e201ae935e19fb824a88f168f07c928a Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 25 Jul 2009 01:08:15 +0000 Subject: (llvm up) Update for API changes. - This dance is getting old. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77029 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Core/Executor.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/Core/Executor.cpp') diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 67459650..df9c5b49 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -1380,8 +1380,7 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { // switch to an internal rep. const llvm::IntegerType *Ty = cast(si->getCondition()->getType()); - ConstantInt *ci = - getGlobalContext().getConstantInt(Ty, CE->getZExtValue()); + ConstantInt *ci = ConstantInt::get(Ty, CE->getZExtValue()); unsigned index = si->findCaseValue(ci); transferToBasicBlock(si->getSuccessor(index), si->getParent(), state); } else { -- cgit 1.4.1