What other optimizations, like the one presented here http://stackoverflow.com/questions/147173/x86-assembly-testl-eax-against-eax can one apply in order to reduce code size?
I am interested especially in one-line optimizations like using test eax, eax instead of cmp eax, 0.
Thanks.