add <= operator for fibo

This commit is contained in:
Torsten Ruger
2014-05-28 20:10:16 +03:00
parent 5c0f62ebb9
commit 4186c9cafe
3 changed files with 14 additions and 3 deletions

View File

@ -18,6 +18,10 @@ module Arm
block << cmp( left , right )
Vm::BranchCondition.new :le
end
def integer_greater_or_equal block , left , right
block << cmp( left , right )
Vm::BranchCondition.new :ge
end
def integer_less_than block , left , right
block << cmp( left , right )
Vm::BranchCondition.new :lt