diff options
author | Andrea Mattavelli <andreamattavelli@gmail.com> | 2016-08-04 17:00:01 +0100 |
---|---|---|
committer | Andrea Mattavelli <andreamattavelli@gmail.com> | 2016-09-26 12:14:20 +0100 |
commit | 2fdd5aa8fc01e3d5c1ff66adf03b6dbb8e427ecd (patch) | |
tree | 2aa879f4c2285644ad36df334a6fa7f1922b427f /lib/Solver/Z3Solver.cpp | |
parent | 1823ab801b50e781c18cff67cb8cda0d7859519e (diff) | |
download | klee-2fdd5aa8fc01e3d5c1ff66adf03b6dbb8e427ecd.tar.gz |
Modified logging information to steer the usage of klee_message, klee_warning, and klee_error
Diffstat (limited to 'lib/Solver/Z3Solver.cpp')
-rw-r--r-- | lib/Solver/Z3Solver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Solver/Z3Solver.cpp b/lib/Solver/Z3Solver.cpp index 96a7dafa..1cbca566 100644 --- a/lib/Solver/Z3Solver.cpp +++ b/lib/Solver/Z3Solver.cpp @@ -7,6 +7,7 @@ // //===----------------------------------------------------------------------===// #include "klee/Config/config.h" +#include "klee/Internal/Support/ErrorHandling.h" #ifdef ENABLE_Z3 #include "Z3Builder.h" #include "klee/Constraints.h" @@ -285,8 +286,7 @@ SolverImpl::SolverRunStatus Z3SolverImpl::handleSolverResponse( if (strcmp(reason, "unknown") == 0) { return SolverImpl::SOLVER_RUN_STATUS_FAILURE; } - llvm::errs() << "Unexpected solver failure. Reason is \"" << reason - << "\"\n"; + klee_warning("Unexpected solver failure. Reason is \"%s,\"\n", reason); abort(); } default: |