shaves an instruction off resolve_method

by loading nil directly,  not space first
This commit is contained in:
Torsten Ruger
2018-09-01 11:20:59 +03:00
parent c3b026a180
commit 0a390cc5a9
7 changed files with 61 additions and 66 deletions

View File

@ -103,7 +103,9 @@ module Risc
def prerun
assemblers.each do |asm|
asm.instructions.each {|i| i.precheck }
asm.instructions.each do |ins|
ins.precheck
end
end
end