xo-interpreter2 stack: support op!= + trial numeric refactor
This commit is contained in:
parent
788363dd4c
commit
0f17c52ce8
15 changed files with 172 additions and 17 deletions
|
|
@ -47,6 +47,13 @@ namespace xo {
|
|||
return DBoolean::box<AGCObject>(rcx.allocator(), x->value() == y->value());
|
||||
}
|
||||
|
||||
obj<AGCObject>
|
||||
FloatOps::cmp_notequal(obj<ARuntimeContext> rcx,
|
||||
DFloat * x, DFloat * y)
|
||||
{
|
||||
return DBoolean::box<AGCObject>(rcx.allocator(), x->value() != y->value());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue