vm: simplify a bit the fixnum_divmod code.
parent
6527464b70
commit
1c7dd3050f
|
|
@ -43,10 +43,8 @@ void factor_vm::primitive_fixnum_divmod()
|
|||
}
|
||||
else
|
||||
{
|
||||
fixnum z = x / y;
|
||||
fixnum w = x % y;
|
||||
*s1 = tag_fixnum(z);
|
||||
*s0 = tag_fixnum(w);
|
||||
*s1 = tag_fixnum(x / y);
|
||||
*s0 = tag_fixnum(x % y);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue