remove link exception class

This commit is contained in:
Torsten Ruger
2018-05-08 20:22:04 +03:00
parent cf06642768
commit 7ca7e92dda
6 changed files with 5 additions and 44 deletions

View File

@ -34,11 +34,7 @@ module Risc
@machine.objects.each do |id , method|
next unless method.is_a? Parfait::TypedMethod
method.cpu_instructions.each do |ins|
begin
ins.assemble(DevNull.new)
rescue LinkException
ins.assemble(DevNull.new)
end
ins.assemble(DevNull.new)
end
end
end