Say I check for a variable in a loop like this.
while( var )
;
Here, var must be declared volatile if the program is multithreaded and var is accessed by multiple threads. That is a known fact. But, lets say, we have something like this.
while( var + 1 )
;
Will this still work with volatile? I mean is it possible that the compiler cache the value of (var + 1)? In other words, I'm asking if we need to code this like following, with temp being a also a volatile variable, to be sure no caching is done by the compiler.
while( temp )
temp = var + 1;