src/verifier.rs: Allow ending with backward jumps
Programs don't always have to have their list of instructions ending
with an `exit` instruction, they can jump backwards to a branch ending
with `exit`.
We don't have the checks to validate that all branches end with `exit`
in the verifier, but we can allow the last instruction to be a backward
jump, at least.
Fixes: #62
Signed-off-by: Quentin Monnet <quentin@isovalent.com>