Custom Query (1030 matches)
Results (748 - 750 of 1030)
|
Ticket
|
Resolution
|
Summary
|
Owner
|
Reporter
|
| #1365 |
fixed
|
typos on http://ccl.clozure.com/docs/ccl.html#installing-and-running-clozure-cl
|
R. Matthew Emerson
|
Gary Byers
|
| Description |
in several cases , there seems to be a missing #\space
before a numeric option, as in:
-Z n (or --thread-stack-sizen).
|
| #1381 |
fixed
|
Misspelling of COMPLEX back in the codebase
|
|
Robert Smith
|
| Description |
Codebase has GET-COMPLES-{SINGLE, DOUBLE}-FLOAT again, as in http://trac.clozure.com/ccl/ticket/1270
$ grep -R "comples" *
compiler/X86/x862.lisp: (! get-comples-single-float reg result-reg)
compiler/X86/x862.lisp: (! get-comples-double-float reg result-reg)
Causing
Unknown vinsn: CCL::GET-COMPLES-DOUBLE-FLOAT
[Condition of type SIMPLE-ERROR]
Backtrace:
0: (CCL::NEED-VINSN-TEMPLATE CCL::GET-COMPLES-DOUBLE-FLOAT #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED>)
Locals:
NAME = CCL::GET-COMPLES-DOUBLE-FLOAT
TEMPLATES = #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED>
1: (CCL::SELECT-VINSN CCL::GET-COMPLES-DOUBLE-FLOAT #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED> (#<LREG 14 FPR {0}/COMPLEX-DOUBLE-FLOAT> #<LREG 8 GPR [6]/LISP>))
Locals:
TEMPLATE-OR-NAME = CCL::GET-COMPLES-DOUBLE-FLOAT
TEMPLATE-HASH = #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED>
VREGS = (#<LREG 14 FPR {0}/COMPLEX-DOUBLE-FLOAT> #<LREG 8 GPR [6]/LISP>)
2: (CCL::%EMIT-VINSN #<VINSN-LIST #x302001B4638D> CCL::GET-COMPLES-DOUBLE-FLOAT #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED> #<LREG 14 FPR {0}/COMPLEX-DOUBLE-FLOAT> #<LREG 8 GPR [6]/LISP>)
Locals:
VLIST = #<VINSN-LIST #x302001B4638D>
NAME = CCL::GET-COMPLES-DOUBLE-FLOAT
VINSN-TABLE = #<HASH-TABLE :TEST EQ size 600/687 #x3020001D16ED>
VREGS = (#<LREG 14 FPR {0}/COMPLEX-DOUBLE-FLOAT> #<LREG 8 GPR [6]/LISP>)
etc etc
|
| #1386 |
fixed
|
Add &LEXPR to LAMBDA-LIST-KEYWORDS
|
Gary Byers
|
Michal "phoe" Herda
|
| Description |
According to CLHS entry for Constant Variable LAMBDA-LIST-KEYWORDS, it is "a list of all the lambda list keywords used in the implementation, including the additional ones used only by macro definition forms".
(arglist #'+) on CCL returns (CCL::&LEXPR CCL::NUMBERS), which includes a keyword &LEXPR that is not on the LAMBDA-LIST-KEYWORDS list.
Therefore I conclude that CCL is not compliant when it comes to this issue.
This is a suggested patch to fix this behaviour.
https://github.com/phoe/ccl/commit/5ac9d024c08fc5eb5302491be218143640aa3388
|
Note:
See
TracQuery
for help on using queries.