aboutsummaryrefslogtreecommitdiff
path: root/src/interp/fortcall.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-05-17 02:17:07 +0000
committerdos-reis <gdr@axiomatics.org>2008-05-17 02:17:07 +0000
commit431f54e5bfc6267719e18c4a4b183bc29d30125f (patch)
tree97a1471535a60eaabf99e516769c3f0c72d1f5f1 /src/interp/fortcall.boot
parent6717da934573a42dd6c99155f388d75abd22f2ea (diff)
downloadopen-axiom-431f54e5bfc6267719e18c4a4b183bc29d30125f.tar.gz
* interp/compiler.boot (compSetq1): Use %Comma, not Tuple.
(setqMultiple): Likewise. * interp/def.lisp (DEF-IS2): Likewise. * interp/define.boot (compAdd): Likewise. * interp/fnewmeta.lisp (|PARSE-Enclosure|): Likewise. * interp/fortcall.boot (lmultiToUnivariate): Likewise. (functionAndJacobian): Likewise. (vectorOfFunctions): Likewise. * interp/mark.boot (markMultipleExplicit): Likewise. (markInsertBodyParts): Likewise. * interp/nruncomp.boot (NRTaddDeltaCode): Likewise. * interp/nrunopt.boot (NRTextendsCategory1): Likewise. * interp/postpar.boot (postTransform): Likewise. (postTran): Likewise. (postPretend): Likewise. (postConstruct): Likewise. (postBlockItem): Likewise. (postCategory): Likewise. (postForm): Likewise. (postTransScripts): Likewise. (postJoin): Likewise. (postMapping): Likewise. (postCollect): Likewise. (postInSeq): Likewise. (postType): Likewise. (post%Comma): Rename from postTuple. (unComma): Rename from unTuple. (comma2Tuple): Remove. * interp/trace.boot (traceSpad2Cmd): Use %Comma, not Tuple. * interp/wi1.boot (compSetq1): Likewise. (setqMultiple):Likewise. * boot/translator.boot (compileBootHandler): Give up if translation to Lisp contained errors. * testsuite/compiler/aw-420.spad: New.
Diffstat (limited to 'src/interp/fortcall.boot')
-rw-r--r--src/interp/fortcall.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/fortcall.boot b/src/interp/fortcall.boot
index 402800b8..9d7d0d50 100644
--- a/src/interp/fortcall.boot
+++ b/src/interp/fortcall.boot
@@ -748,7 +748,7 @@ multiToUnivariate f ==
-- elements of a vector, and compile it.
(first f) ^= "+->" => error "in multiToUnivariate: not an AnonymousFunction"
if PAIRP CADR f then
- vars := CDADR f -- throw away 'Tuple at start of variable list
+ vars := CDADR f -- throw away '%Comma at start of variable list
else
vars := [CADR f]
body := COPY_-TREE CADDR f
@@ -765,7 +765,7 @@ functionAndJacobian f ==
-- evaluate function and jacobian values.
(first f) ^= "+->" => error "in functionAndJacobian: not an AnonymousFunction"
if PAIRP CADR f then
- vars := CDADR f -- throw away 'Tuple at start of variable list
+ vars := CDADR f -- throw away '%Comma at start of variable list
else
vars := [CADR f]
#(vars) ^= #(CDADDR f) =>
@@ -793,7 +793,7 @@ vectorOfFunctions f ==
-- evaluate function values.
(first f) ^= "+->" => error "in vectorOfFunctions: not an AnonymousFunction"
if PAIRP CADR f then
- vars := CDADR f -- throw away 'Tuple at start of variable list
+ vars := CDADR f -- throw away '%Comma at start of variable list
else
vars := [CADR f]
funBodies := COPY_-TREE CDADDR f