Re: [PATCH] covoar: Fix single-byte uncovered ranges

2021-06-02 Thread Gedare Bloom
ok On Wed, Jun 2, 2021 at 8:29 AM Alex White wrote: > > This fixes a bug where covoar reports uncovered ranges of size 1. When a > NOP instruction is encountered at the end of a function, the remaining > non-instruction bytes are marked as executed. The loop that marks the > remaining bytes as ex

[PATCH] covoar: Fix single-byte uncovered ranges

2021-06-02 Thread Alex White
This fixes a bug where covoar reports uncovered ranges of size 1. When a NOP instruction is encountered at the end of a function, the remaining non-instruction bytes are marked as executed. The loop that marks the remaining bytes as executed was not considering the last address of the function. Cl