[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: FORLOOP question
- From: Roberto Ierusalimschy <roberto@...>
- Date: Sun, 1 Mar 2015 16:53:09 -0300
> In the FORLOOP implementation in lvm.c the index is updated as shown
> below (and similarly for floating point):
>
> setivalue(ra, idx); /* update internal index... */
> setivalue(ra + 3, idx); /* ...and external index */
>
> It seems that only the value needs to be updated - not the type, as
> the type is already set by the FORPREP instruction. Is that correct?
Yes.
-- Roberto