remove dead code that was produced

This commit is contained in:
2019-09-17 16:08:49 +03:00
parent 61819b7230
commit d58ed8e5e8
5 changed files with 24 additions and 64 deletions

View File

@ -2,11 +2,7 @@ module Mom
class MethodMissing < Macro
def to_risc(compiler)
builder = compiler.builder(compiler.source_name)
builder.build do
factory! << Parfait.object_space.get_factory_for(:Integer)
integer_tmp! << factory[:reserve]
Mom::Macro.emit_syscall( builder , :died ) #uses integer_tmp
end
builder.add_code Risc::Syscall.new("Method_missing_died", :died )
return compiler
end
end