Re: [pure-lang-users] 64-bit build-problems
Status: Beta
Brought to you by:
agraef
|
From: Tim H. <q...@st...> - 2008-05-02 23:09:46
|
"Libor Spacek" <li...@gm...> writes: > ALbert, > > I have solved that problem with test1.pure There is actually a bug in > fact3. It should be corrected to the following: > > fact3 n = case n of > 0 = 1; > n = n*fact3 (n-1) if n>0; > end; > > The previous guard n>1 was wrong because fact3 1 then failed to match any > case. In other words it was not a 64bit issue. Could something like that be behind my ppc problem with test6.pure, d'you think? ~Tim -- <http://spodzone.org.uk/> |