in C66, int is 32 bits and short is 16 bits.
For most of local variables, including loop counter, we know that it won't exceed 16 bits.
Is there any difference in performance between using int and short for such cases? I can understand that int always cost more in cache, how about other aspect, such as compilation optimization?
thanks
Weichun