Hacker News new | ask | show | jobs
by MaxBarraclough 2211 days ago
That wouldn't work anyway. You could rewrite code to use fewer variables without changing the resulting assembly.

    i = get_thing();
    j = do_stuff(i);
vs

    j = do_stuff(get_thing());