nponeccop / HNC

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

Optimization of udp_echo_server-1.hn fails to inline reply #46

Closed nponeccop closed 11 years ago

nponeccop commented 11 years ago

HN source:

hnMain = {
    s = 5
    reply msg = print s
    ping = reply 6
    ping
}

Expected result:

hnMain = print 5

Actual result:

hnMain = {
    reply msg = print 5
    reply 6
}
nponeccop commented 11 years ago

Fixed