* src/vm/jit/x86_64/md-emit.h (IS_IMM8, IS_IMM32): Removed.
[cacao.git] / src / vm / jit / x86_64 / md-emit.h
index ed7928025d716d82a2cede114f2d7c368c77d9e5..b4596e2d90b83bb5504dde3230b6e58b4ed242e5 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: md-emit.h 4994 2006-05-31 12:33:40Z twisti $
+   $Id: md-emit.h 4995 2006-05-31 13:10:49Z twisti $
 
 */
 
@@ -108,14 +108,6 @@ typedef union {
 #define CC_NLE       0x0f
 
 
-#define IS_IMM8(imm) \
-    (((long) (imm) >= -128) && ((long) (imm) <= 127))
-
-
-#define IS_IMM32(imm) \
-    (((long) (imm) >= (-2147483647-1)) && ((long) (imm) <= 2147483647))
-
-
 /* modrm and stuff */
 
 #define emit_address_byte(mod,reg,rm) \