Skip to content

Commit

Permalink
Fix status check
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Jan 10, 2025
1 parent 1f0f999 commit 23c6175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/instruction/aarch64_simd.C
Original file line number Diff line number Diff line change
Expand Up @@ -1013,8 +1013,8 @@ test_results_t aarch64_simd_Mutator::executeTest()

test_results_t retVal = PASSED;
for(auto insn : decodedInsns) {
auto success = verify_read_write_sets(insn, expectedRead.front(), expectedWritten.front());
if(!success) {
auto status = verify_read_write_sets(insn, expectedRead.front(), expectedWritten.front());
if(status == FAILED) {
retVal = FAILED;
}
expectedRead.pop_front();
Expand Down

0 comments on commit 23c6175

Please sign in to comment.