Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
a35493d2
Commit
a35493d2
authored
Nov 13, 1990
by
wlott
Browse files
Forgot to call length on the indices &rest arg in the aref derive-type
optimizer.
parent
67fbaa6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/array-tran.lisp
View file @
a35493d2
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.
3
1990/11/1
0 19:39:06
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.
4
1990/11/1
3 06:16:57
wlott Exp $
;;;
;;; This file contains array specific optimizers and transforms.
;;;
...
...
@@ -71,7 +71,7 @@
;;; AREF -- derive-type optimizer.
;;;
(
defoptimizer
(
aref
derive-type
)
((
array
&rest
indices
))
(
assert-array-rank
array
indices
)
(
assert-array-rank
array
(
length
indices
)
)
(
extract-element-type
array
))
;;; %ASET -- derive-type optimizer.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment