Hi community,
I deal with TMS320C28x and want to ask what the compiler does when having the following code:
long long_A = 1000L;
....
if (long_A == 0x80000000)
...
What does the compiler do with long_A in the comparison? To which data type is it castet?
Are there rules which tell you what the compiler does with 0x80000000 or 0xFFFFFFFF.
Is it interpreted as -2147483648 and -1?
I appreciate your help,
JD