CompCert
CompCert copied to clipboard
Integers.v: add unsigned_inj
I've found useful the property that for integers, unsigned is injective:
Lemma unsigned_inj : forall x y : int,
unsigned x = unsigned y -> x = y.