Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix declaration in base64-decode
An incorrect array declaration was given but it's been there for a
long time so clearly the compiler had not used that declaration
to generate bad code.  However as a result the compiler did not
open code the array references.  base64-decode is not a critical
function so no performance difference are anticipated.

Change-Id: Ibe947e4ea706dbbfd04782c89eee7a49503c6d65
  • Loading branch information
John Foderaro committed Jul 25, 2012
1 parent 4aa8a33 commit d54c146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decode.cl
Expand Up @@ -605,7 +605,7 @@
:fill-pointer 0 :fill-pointer 0
:adjustable t)) :adjustable t))
(arr *base64-decode*)) (arr *base64-decode*))
(declare (type (simple-array (unsigned-byte 8) 128) arr)) (declare (type (simple-array (unsigned-byte 8) (128)) arr))
(do ((i 0 (+ i 4)) (do ((i 0 (+ i 4))
(cha) (cha)
(chb)) (chb))
Expand Down

0 comments on commit d54c146

Please sign in to comment.