remove old to_asm

very strange that is was called in 1.9 but not 2.0
2.0 seems to delay interpolating strings
This commit is contained in:
Torsten Ruger
2015-07-18 12:15:07 +03:00
parent 998d5f8b90
commit e1c19dee80
4 changed files with 5 additions and 5 deletions

View File

@ -99,7 +99,7 @@ module Arm
[]
end
def to_s
"#{opcode} #{@left.to_asm} , #{@right.to_asm} #{super}"
"#{opcode} #{@left} , #{@right} #{super}"
end
end
end