Custom Query (1030 matches)
Results (277 - 279 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1191 | fixed | showing IDE preferences panel gives "Error: Invalid memory operation" | ||
| Description |
Start a trunk ccl and do (require 'cocoa). Choose "Preferences..." from the application menu. > Error: Invalid memory operation. > While executing: GUI::|-[CCLFontToNameTransformer transformedValue:]|, in process Initial(0). The function in question is in ccl:cocoa-ide;preferences.lisp. It works on 1.9. I suspect a compiler bug, but I have not looked at it very hard, so I could be wrong about that. The trunk and 1.9 versions of the function are identical. |
|||
| #1226 | fixed | x8632 compiler runs out of node temp registers | ||
| Description |
(defun bug (state)
(declare (type (simple-array (unsigned-byte 32) (627)) state)
(optimize (speed 3) (safety 0)))
(let ((y 0))
(declare (type (unsigned-byte 32) y))
(setf y (logior (logand (aref state (+ 3 (1- 624)))
#x80000000)
(logand (aref state 3) #x7fffffff)))
(setf (aref state (+ 3 (1- 624)))
(logxor (aref state (+ 3 (1- 397)))
(ash y -1) (aref state (logand y 1)))))
(values))
Compile with an x8632 lisp at 1.10-dev-r16186, and get "Bug: ran out of node temp registers." This is a cut-down test case from the mt19937 library. It could be loaded with (ql:quickload :mt19937) if desired. |
|||
| #1227 | fixed | several ironclad tests fail on x8632 lisp | ||
| Description |
Several of Ironclad's tests fail on Version 1.10-dev-r16186 (DarwinX8632). (ql:quickload :ironclad-tests) (asdf:oos 'asdf:test-op :ironclad-tests) At the moment, this is mainly a placeholder ticket. I will be updating it with smaller test cases. |
|||
