mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-27 23:11:18 -08:00
Merged in CVS
This commit is contained in:
commit
472a221691
2 changed files with 2 additions and 1 deletions
|
|
@ -1979,7 +1979,7 @@ compile_form(cl_object stmt, int flags) {
|
|||
cl_fixnum n;
|
||||
if (stmt == Cnil) {
|
||||
asm_op(push? OP_PUSHNIL : OP_NIL);
|
||||
} else if (FIXNUMP(stmt) && (n = fix(stmt), abs(n)) <= MAX_OPARG) {
|
||||
} else if (FIXNUMP(stmt) && (n = fix(stmt)) <= MAX_OPARG && n >= -MAX_OPARG) {
|
||||
asm_op2(push? OP_PINT : OP_INT, n);
|
||||
} else {
|
||||
asm_op2c(push? OP_PUSHQ : OP_QUOTE, stmt);
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ Returns, as a string, the location of the machine on which ECL runs."
|
|||
"Args:()
|
||||
Returns the version of your ECL as a string."
|
||||
"@PACKAGE_VERSION@ (CVS 2008-06-04 23:07)")
|
||||
"@PACKAGE_VERSION@ (CVS 2008-06-19 17:09)")
|
||||
|
||||
(defun machine-type ()
|
||||
"Args: ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue