rubyx/lib/mom/macro/exit.rb
2019-09-13 10:42:20 +03:00

11 lines
255 B
Ruby

module Mom
class Exit < Macro
def to_risc(compiler)
builder = compiler.builder(compiler.source)
builder.prepare_int_return # makes integer_tmp variable as return
Macro.exit_sequence(builder)
return compiler
end
end
end