#213: ABCL-ASDF breakage on trunk
-------------------------+--------------------------------------------------
Reporter: mevenson | Owner: ehuelsmann
Type: defect | Status: new
Priority: major | Milestone: 1.1.0
Component: interpreter | Version: 1.1.0-dev
Keywords: |
-------------------------+--------------------------------------------------
Changeset 1834:d7370bc12860: bad
The first bad revision is:
changeset: 1834:d7370bc12860
user: ehuelsmann@1c010e3e-69d0-11dd-93a8-456734b0d56f
date: Sun Jan 29 20:56:08 2012 +0000
summary: (Re)factor function call argument matching out of
Closure.java.
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/213>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#186: org.armedbear.lisp.IntegrityError means you need to check out how ABCL is
finding boot.lisp
----------------------------+-----------------------------------------------
Reporter: mevenson | Owner: mevenson
Type: defect | Status: new
Priority: major | Milestone: unscheduled
Component: other | Version: 1.0
Keywords: IntegrityError |
----------------------------+-----------------------------------------------
[http://paste.lisp.org/+2P0S/1 org.armedbear.lisp.IntegrityError]
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/186>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#225: One of the paths in STD-COMPUTE-DISCRIMINATING function not working
------------------------+---------------------------------------------------
Reporter: ehuelsmann | Owner: somebody
Type: defect | Status: new
Priority: major | Milestone: 1.1.0
Component: CLOS | Version:
Keywords: |
------------------------+---------------------------------------------------
In r14021, I've committed a note regarding a code path that's not working.
Creating this ticket to create a log of the fact that I've been
investigating and my findings so far. (Which are in the code now.)
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/225>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#216: JVM stack inconsistency triggered by compiler
-----------------------+----------------------------------------------------
Reporter: rschlatte | Owner: ehuelsmann
Type: defect | Status: new
Priority: major | Milestone:
Component: compiler | Version:
Keywords: |
-----------------------+----------------------------------------------------
{{{
CL-USER(50): (lisp-implementation-version)
"1.1.0-dev-svn-13998M"
CL-USER(51): (lambda (a b c)
(declare (optimize (safety 0)))
(ash 3 (min 2 (the integer (block b (catch 'ct a))))))
#<FUNCTION (LAMBDA (A B C)) {374FB6BE}>
CL-USER(52): (compile nil *)
; Caught STYLE-WARNING:
; The variable B is defined but never used.
; Caught STYLE-WARNING:
; The variable C is defined but never used.
#<THREAD "interpreter" {5D4AAA93}>: Debugger invoked on condition of type
INTERNAL-COMPILER-ERROR
Stack inconsistency detected in NIL at index 36: found 2, expected 1.
Restarts:
0: CONTINUE Eventually use interpreted form instead
1: TOP-LEVEL Return to top level.
}}}
(reported by Eric Marsden on armedbear-devel July 10, 2012)
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/216>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#207: DECLARE should signal conditions when type declaration are violated
------------------------------+---------------------------------------------
Reporter: mevenson | Owner: ehuelsmann
Type: defect | Status: new
Priority: major | Milestone: 1.1.0
Component: interpreter | Version: 1.1.0-dev
Keywords: ansi-conformance |
------------------------------+---------------------------------------------
On #abcl, chtune notes http://paste.lisp.org/display/129139:
{{{
defun test (x)
(let ((j 10))
(declare (integer x))
(+ x j)))
(test 10.4) ; => 20.4
; I would expect this to throw a type error
}}}
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/207>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
#219: Keyword argument checking for lambda lists is too lenient for ANSI
------------------------------+---------------------------------------------
Reporter: mevenson | Owner: ehuelsmann
Type: defect | Status: new
Priority: major | Milestone: 1.1.0
Component: interpreter | Version: 1.0.1
Keywords: ansi-conformance |
------------------------------+---------------------------------------------
From #abcl on Thu Jul 26 2012
{{{
<chturne> I don't run the latest and greatest ABCL, but you allow
&BODY in ordinary lambda lists, which is an ANSI violation. There
are probably other such violations, as I see little discrimination
in the argument parsing code.
}}}
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/219>
armedbear <http://common-lisp.net/project/armedbear>
armedbear