remove some of the node mess

This commit is contained in:
Torsten Ruger
2014-04-21 17:34:24 +03:00
parent ff38bde44e
commit fc3f5d5402
4 changed files with 19 additions and 24 deletions

View File

@@ -18,7 +18,7 @@ module Asm
def add_relocation(*args)
reloc = Asm::Relocation.new(*args)
raise "reloc #{reloc.inspect}"
#raise "reloc #{reloc.inspect}"
@relocations << reloc
end
@@ -29,7 +29,7 @@ module Asm
@relocations.delete_if do |reloc|
io.seek reloc.position
puts "reloc #{reloc.inspect}"
#puts "reloc #{reloc.inspect}"
if (reloc.label.extern?)
reloc.handler.call(io, io.tell, reloc.type)
else