]> gitweb.factorcode.org Git - factor.git/commitdiff
VM: Remove WINCE #ifndef; fold wince? words
authorErik Charlebois <erikcharlebois@gmail.com>
Mon, 13 May 2013 03:55:50 +0000 (23:55 -0400)
committerErik Charlebois <erikcharlebois@gmail.com>
Mon, 13 May 2013 04:01:46 +0000 (00:01 -0400)
unmaintained/arm/architecture/architecture.factor
vm/master.hpp

index 3e102fe84b8e3b77c69a925d3fc29abf3e070626..21b847f4f6c60e6f96800963056851d20de42223 100644 (file)
@@ -267,7 +267,7 @@ M: arm-backend %box-large-struct ( n size -- )
     "box_value_struct" f %alien-invoke ;
 
 M: arm-backend struct-small-enough? ( size -- ? )
-    wince? [ drop f ] [ 4 <= ] if ;
+    4 <= ;
 
 M: arm-backend %prepare-alien-invoke
     #! Save Factor stack pointers in case the C code calls a
@@ -316,7 +316,7 @@ M: arm-backend value-structs? t ;
 
 M: arm-backend small-enough? ( n -- ? ) 0 255 between? ;
 
-M: long-long-type c-type-stack-align? drop wince? not ;
+M: long-long-type c-type-stack-align? drop t ;
 
 M: arm-backend fp-shadows-int? ( -- ? ) f ;
 
index a5e3afdf7a256ba9929237847feb557cc457ea32..ff1a758f5da91c5975c9ed1e3372166ff602b62a 100644 (file)
@@ -9,9 +9,7 @@
 #define _REENTRANT
 #endif
 
-#ifndef WINCE
 #include <errno.h>
-#endif
 
 /* C headers */
 #include <fcntl.h>