nponeccop / HNC

HN Compiler
GNU Lesser General Public License v3.0
62 stars 5 forks source link

Eliminate unused actual parameters #61

Open nponeccop opened 9 years ago

nponeccop commented 9 years ago

hn_tests/opt/euler6-7.hn:

hnMain = {
        natr f = 6
        print (natr natr)
}

natr natr can be substituted for natr 0 (or other suitable placeholder argument) so natr can be inlined.

nponeccop commented 9 years ago

Fixed. See opt/euler6-7.hn - natr is properly inlined