Re: More static checking fixes (unused LHS assignments)

2011-03-25 Thread Richard Henderson
On 03/25/2011 01:19 PM, Jeff Law wrote: > * var-tracking.c (canonicalize_values_mark): Delete unused > lhs assignment. > (canonicalize_values_star, set_variable_part): Likewise. > (clobber_variable_part, delete_variable_part): Likewise. Ok. r~

More static checking fixes (unused LHS assignments)

2011-03-25 Thread Jeff Law
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 var-tracking (and other modules) have a habit of assigning values to objects, then never using the values. We still need the RHS side effect in these cases, so the assignment was deleted leaving just the RHS as a statement. Fixed thusly for var-track