Compilation modes
The compilation system has five compilation
modes that correspond to degrees of compliance with ANSI C.
The modes are:
A program that depends on unsigned-preserving arithmetic conversions will behave differently. This is considered to be the most serious change made by ANSI C to a widespread current practice.
In The C Programming Language, Kernighan and Ritchie, (First Edition), unsigned specified exactly one type; there were no unsigned chars, unsigned shorts, or unsigned longs, but most C compilers added these very soon thereafter.
In many pre-ANSI C compilers, the ``unsigned-preserving'' rule is used for promotions: when an unsigned type needs to be widened, it is widened to an unsigned type; when an unsigned type mixes with a signed type, the result is an unsigned type.
The other rule, specified by ANSI C, came to be called ``value-preserving,'' in which the result type depends on the relative sizes of the operand types. When an unsigned char or unsigned short is ``widened,'' the result type is int if an int is large enough to represent all the values of the smaller type. Otherwise the result type would be unsigned int. The ``value-preserving'' rule produces the ``least surprise'' arithmetic result for most expressions.
Only in the transition (-Xt) or classic (-Xk) mode will the compiler use the unsigned-preserving promotions; in the other three modes, -Xc, -Xa and -Xm, the value-preserving promotion rules will be used. No matter what the current mode may be, the compiler can warn about each expression whose behavior might depend on the promotion rules used.
This warning is given if the warning level is 2 (-w2) or 3 (-w2).