Skip to content

Commit ecfca38

Browse files
Columpiomisonijnik
authored andcommitted
[fix] Small fixes
1 parent 8529980 commit ecfca38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Core/Executor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6021,13 +6021,13 @@ void Executor::executeMemoryOperation(
60216021
bool success = solver->getResponse(state->constraints.cs(), inBounds,
60226022
response, state->queryMetaData);
60236023
solver->setTimeout(time::Span());
6024-
bool mustBeInBounds = !isa<InvalidResponse>(response);
60256024
if (!success) {
60266025
state->pc = state->prevPC;
60276026
terminateStateOnSolverError(*state, "Query timed out (bounds check).");
60286027
return;
60296028
}
60306029

6030+
bool mustBeInBounds = !isa<InvalidResponse>(response);
60316031
if (mustBeInBounds) {
60326032
if (isa<UnknownResponse>(response)) {
60336033
addConstraint(*state, inBounds);

0 commit comments

Comments
 (0)