On 2/3/2011 6:35 PM, Ted Kremenek wrote: > int x; > ... > if (flag) > x = ... > ... > if (flag) > use(x); This comes up fairly frequently in code that I work on. Is it possible to recognize and analyze this case in the special case that 'flag' is a const? Thank you, David