Let say I have this preprocessor check:
#if(-6 & 5)
#error "No 2's complement signed int"
#endif
What would happen if I cross compiled from, say, a two's complement machine toward a one's complement machine. Would the compiler use the arithmetic of the target machine, or the one of the compiling machine ?
Thanks