Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (781 - 783 of 1030)

Ticket Resolution Summary Owner Reporter
#243 duplicate let bug Gary Byers Osei Poku
Description

{{{(let ((a 10))

(let ((b a)

(c (incf a)))

(format t "~A ~A ~A~%" a b c)))}}}

The following code should give 11 10 11, however openmcl produces 11 11 11.

#244 fixed let bug Gary Byers Osei Poku
Description

(let ((a 10))

(let ((b a)

(c (incf a)))

(format t "~A ~A ~A~%" a b c)))

The following code should give 11 10 11, however openmcl produces 11 11 11. '

#246 fixed x8664::max-1-bit-constant-index probably too big Gary Byers R. Matthew Emerson
Description

x8664::max-1-bit-constant-index seems to be too big.

The maximum displacement in an x86 memory operand is a 32-bit signed displacement. This limit can be exceeded in the set-constant-bit vinsns.

For example,

(defun foo (b)
       (declare (type (simple-array bit (*)) b))
       (setf (aref b x8664::max-1-bit-constant-index) 1))

produces bogus code.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.