diff runtime/integer.h @ 48:a24eb366195c

Fixed some bugs introduced in previous commit and moved definition of integer methods out of runtime and into the compiler
author Mike Pavone <pavone@retrodev.com>
date Tue, 02 Mar 2010 00:18:49 -0500
parents aabda74c7a88
children 04baa003de5a
line wrap: on
line diff
--- a/runtime/integer.h	Tue Dec 22 01:22:09 2009 -0500
+++ b/runtime/integer.h	Tue Mar 02 00:18:49 2010 -0500
@@ -4,16 +4,6 @@
 #include "object.h"
 #include "func.h"
 
-Box(int32_t,num,Int32)
-
-MethodDef(_PL_,Int32)
-MethodDef(_MN_,Int32)
-MethodDef(_TM_,Int32)
-MethodDef(_DV_,Int32)
-MethodDef(LShift,Int32)
-MethodDef(RShift,Int32)
-MethodDef(_LT_,Int32)
-MethodDef(_GT_,Int32)
 
 object * make_Int32(int32_t val);