aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Core/Executor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp
index d4009dd2..462db18b 100644
--- a/lib/Core/Executor.cpp
+++ b/lib/Core/Executor.cpp
@@ -1519,10 +1519,11 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) {
#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1)
for (SwitchInst::CaseIt i = si->case_begin(), e = si->case_end();
i != e; ++i) {
+ ref<Expr> value = evalConstant(i.getCaseValue());
#else
for (unsigned i=1, cases = si->getNumCases(); i<cases; ++i) {
+ ref<Expr> value = evalConstant(si->getCaseValue(i));
#endif
- ref<Expr> value = evalConstant(i.getCaseValue());
ref<Expr> match = EqExpr::create(cond, value);
isDefault = AndExpr::create(isDefault, Expr::createIsZero(match));
bool result;