Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#64 fixed "maze" benchmark produces incorrect result when compiled wirth -block on x86-64 felix winkelmann
Description

(reported by mario)

Some initial testing by adding debugging output to bit-test indicates a bit-twiddling problem.

#621 fixed "numbers" egg dumps core if base argument to string->number is too large pdh
Description

After loading the "numbers" egg, if the base is too large for string->number, csi dumps core.

Looks like this:

$ csi ... Version 4.7.0 openbsd-unix-gnu-x86-64 [ 64bit manyargs dload ptables ]

#;1> (use numbers) ... #;2> (string->number "10" (- (expt 2 (/ (- (* 8 8) 2) 2)) 1)) 2147483647 #;3> (string->number "10" (expt 2 (/ (- (* 8 8) 2) 2))) Abort trap (core dumped)

It is failing in string_to_big() in numbers-c.c at line 2328:

BIGNUM_ASSERT ((radix > 1) && (radix <= BIGNUM_RADIX_ROOT));

BIGNUM_ASSERT just calls "abort" if the test fails, which causes the core dump.

Observed in the "numbers" egg Version 2.6. (That is, the version that I installed today.)

#75 fixed "ref" foreign argument type does not work Jim Ursetto
Description

Bug reported by Nicholas "Indy" Ray. "ref" foreign argument type results in illegal type error. Attached patch to c-backend should fix the problem.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.