From 4b4e290e1f138eb916ea033fa9663eeb9060b633 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 23 Oct 2009 12:34:17 -0400 Subject: [PATCH] Changed the name of some primitives in picobit-vm.h to reflect changes in the code. --- picobit-vm.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/picobit-vm.h b/picobit-vm.h index 607476d..a9568be 100644 --- a/picobit-vm.h +++ b/picobit-vm.h @@ -614,14 +614,12 @@ char *prim_name[64]; void prim_numberp (); void prim_add (); -void prim_mul (); -void prim_div (); +void prim_mul_non_neg (); +void prim_div_non_neg (); void prim_rem (); -void prim_neg (); void prim_eq (); void prim_lt (); void prim_gt (); -// TODO we have extra primitives, pring back geq, leq, and put them in a sensible place in the primitives void prim_ior (); void prim_xor (); -- 2.11.4.GIT