For example
	tzcntl	%edi, %ebx
	testl %edi, %edi
	je	.label
can be rewritten into
	tzcntl	%edi, %ebx
	jae	.label
A minor complication is that tzcnt sets CF instead of ZF when the input
is zero, we have to rewrite users of the flags from ZF to CF. Currently
we recognize patterns using lzcnt, tzcnt and popcnt.