Removed duplicate definition of S48_ENTER/EXTRACT_BOOLEAN.

This commit is contained in:
mainzelm 2002-09-06 11:57:53 +00:00
parent 48a009c698
commit 854f9d18e1
1 changed files with 0 additions and 3 deletions

View File

@ -88,9 +88,6 @@
(let ((name (upcase (car imm))))
(c-define "S48_~A (S48_MISC_IMMEDIATE(~D))" name i)))
(newline)
(c-define "S48_ENTER_BOOLEAN(n) ((n) ? S48_TRUE : S48_FALSE)")
(c-define "S48_EXTRACT_BOOLEAN(x) ((x) != S48_FALSE)")
(newline)
(c-define "S48_UNSAFE_ENTER_CHAR(c) (S48_CHAR | ((c) << 8))")
(c-define "S48_UNSAFE_EXTRACT_CHAR(x) ((x) >> 8)")
(c-define "S48_CHAR_P(x) ((((long) (x)) & 0xff) == S48_CHAR)"))