Re: Unsigned int > Question

From: Rick (aso3rick_at_hotmail.com)
Date: 11/20/03


Date: Thu, 20 Nov 2003 09:54:43 +0100

Hi,

Talking about signed and unsigned stuff, does it makes the performance
better if you carefully choose wether a variable is signed or not? For
example, I got this :

    /* do some loop */
    int8 counter;
    for( counter = 0; counter < MAX_VALUE; counter++ ) {}

That max_value thing is a number between 0..128 so signed int8 and unsigned
int8 both work. But is their also a performance difference?

Greetings,
Rick