We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8529980 commit ecfca38Copy full SHA for ecfca38
1 file changed
lib/Core/Executor.cpp
@@ -6021,13 +6021,13 @@ void Executor::executeMemoryOperation(
6021
bool success = solver->getResponse(state->constraints.cs(), inBounds,
6022
response, state->queryMetaData);
6023
solver->setTimeout(time::Span());
6024
- bool mustBeInBounds = !isa<InvalidResponse>(response);
6025
if (!success) {
6026
state->pc = state->prevPC;
6027
terminateStateOnSolverError(*state, "Query timed out (bounds check).");
6028
return;
6029
}
6030
+ bool mustBeInBounds = !isa<InvalidResponse>(response);
6031
if (mustBeInBounds) {
6032
if (isa<UnknownResponse>(response)) {
6033
addConstraint(*state, inBounds);
0 commit comments