------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-06 20:14 ------- Even for the simple testcase, we don't eliminate dead stores: int i; int j; int main() { i = 0; <<--should be removed j = 0; <<--should be removed j = 1; <<--should be removed i = 42; j = 2; }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17064