diff options
author | Lukas Wölfer <lukas.woelfer@rwth-aachen.de> | 2017-06-24 18:59:27 +0200 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2017-08-04 11:52:03 +0100 |
commit | fff6485e2f3ec82b6cb31e1f5038adef09be7eed (patch) | |
tree | 91ccb200f906f9314f79e4bb11037b2948a641e2 /lib/Core/SpecialFunctionHandler.cpp | |
parent | a4ed54c2b8228a30785c11d7542427a1bd1f7292 (diff) | |
download | klee-fff6485e2f3ec82b6cb31e1f5038adef09be7eed.tar.gz |
Removed merging searchers
Diffstat (limited to 'lib/Core/SpecialFunctionHandler.cpp')
-rw-r--r-- | lib/Core/SpecialFunctionHandler.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Core/SpecialFunctionHandler.cpp b/lib/Core/SpecialFunctionHandler.cpp index aaa26922..74d36f27 100644 --- a/lib/Core/SpecialFunctionHandler.cpp +++ b/lib/Core/SpecialFunctionHandler.cpp @@ -93,7 +93,6 @@ static SpecialFunctionHandler::HandlerInfo handlerInfo[] = { add("klee_is_symbolic", handleIsSymbolic, true), add("klee_make_symbolic", handleMakeSymbolic, false), add("klee_mark_global", handleMarkGlobal, false), - add("klee_merge", handleMerge, false), add("klee_prefer_cex", handlePreferCex, false), add("klee_posix_prefer_cex", handlePosixPreferCex, false), add("klee_print_expr", handlePrintExpr, false), @@ -325,12 +324,6 @@ void SpecialFunctionHandler::handleReportError(ExecutionState &state, readStringAtAddress(state, arguments[3]).c_str()); } -void SpecialFunctionHandler::handleMerge(ExecutionState &state, - KInstruction *target, - std::vector<ref<Expr> > &arguments) { - // nop -} - void SpecialFunctionHandler::handleNew(ExecutionState &state, KInstruction *target, std::vector<ref<Expr> > &arguments) { |