Skip to content

Commit

Permalink
Fix the unaligned pointer analysis check parameter in the README.md f…
Browse files Browse the repository at this point in the history
…ile (#222)

In the `README.md` file, for the unaligned pointer analysis check, it could be seen `-a=upav` although it had to be `-a=upa`.
  • Loading branch information
asensi committed Aug 5, 2023
1 parent 18a5d0b commit 8608a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ The list of available checks are:
* **division by zero analysis**, `-a=dbz`: checks for integer divisions by zero.
* **null pointer analysis**, `-a=nullity`: checks for null pointer dereferences.
* **assertion prover**, `-a=prover`: prove user-defined properties, using `__ikos_assert(condition)`.
* **unaligned pointer analysis**, `-a=upav`: checks for unaligned pointer dereferences.
* **unaligned pointer analysis**, `-a=upa`: checks for unaligned pointer dereferences.
* **uninitialized variable analysis**, `-a=uva`: checks for read of uninitialized variables.
* **signed integer overflow analysis**, `-a=sio`: checks for signed integer overflows.
* **unsigned integer overflow analysis**, `-a=uio`: checks for unsigned integer overflows.
Expand Down

0 comments on commit 8608a78

Please sign in to comment.