Karsten Poeck

Results 14 issues of Karsten Poeck

This is not a bug, I am concerned with saving the still valid information from the old wiki in https://trac.clozure.com/ccl/wiki/OldWikiStart I have downloaded this wiki in individual text files (attached...

Regressions tests execute, but have some failures: * 6 out of 112 total tests failed: CIRC.5, CIRC.6, CIRC.9, CIRC.12, CIRC.13, CORRECT.LIST.1. will try to fix clasp so that the 6...

In https://github.com/robert-strandh/SICL/blob/master/Code/Cleavir/Kildall/Specializations/Type-inference/insert-type-checks.lisp#L73: shouldn't that be: ```lisp (destructuring-bind (&optional (car '*) (cdr '*)) (rest typespec) ...) ```` instead of ```lisp (destructuring-bind (&optional (car '*) (cdr '*)) typespec ...) ```` The later...

* complete the use of closer-mop, so that the :shadowing-import-from of the two symbols is no longer necessary * Did run the tests successfully in sbcl and clasp, but they...

```Common-lisp COMMON-LISP-USER> (defun fibonacci (n) (cond ((< n 0) (error "Please pass a positive argument ~a~%" n)) ((= n 0) 0) ((= n 1) 1) (t (+ (fibonacci (1- n))(fibonacci...

bug

I run into this while trying to x-compile sbcl with clasp **Code at issue** ```lisp (defstruct (foo (:constructor create-foo ())) a) (foo-a (create-foo)) # (type-of (foo-a (create-foo))) Condition of type:...

bug

**Code at issue** The following loops: ```lisp (ql:quickload :ironclad) ```` **Context** * happens while compiling "ironclad" "src" "ciphers" "serpent" * reaches `BIR-TRANSFORMATIONS` and `CC-BIR-TO-BMIR:ASSIGN-MODULE-RTYPES` and `CC-BIR-TO-BMIR::ASSIGN-INSTRUCTION-RTYPES` * A backtrace in...

bug

**Describe the bug** While chasing the bug that compiling ironcald seems to loop in `bir-transformations`found another one **Actual behavior** ```` (ql:quickload :ironclad) errors with ; caught ERROR: ; BUG: MIN-VRTYPE...

bug

The following probably should not be allowed, but have to admit that I don't see a rules for that in clhs. ```lisp COMMON-LISP-USER> (defun foo-bar (a a) a) ; caught...

enhancement

With the following changes clasp can crosscompile sbcl: * apply pr https://github.com/clasp-developers/clasp/pull/924 * in irrat.lisp comment out the definition of complex-atanh and put the following instead ```lisp (defun complex-atanh (z)...