Currently, in sdcc, char is signed char by default.

I would like to change this to unsigned char.

The current --funsigned-char would be replaced by a --fsigned char
switch to get the non-default behaviour.

char being unsigned char by default has advantages:

People compare chars. For many architectures, unsigned comparisons are
more efficient than unsigned comparisons.

People cast chars to ints (many standard functions int arguments for
characters). Casts from unsigned char to int are muh more efficient than
signed char to int (the latter needs sign extension, the former doesn't).

The C standard states that char should be either signed char or unsigned
char.

Philipp

Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to