1
0
forked from GitHub/gf-core

bugfix in the byte code compiler

This commit is contained in:
kr.angelov
2014-10-07 20:03:54 +00:00
parent e98d61b7b7
commit 35333385b6

View File

@@ -130,12 +130,12 @@ compileFun gr arity st vs (Let (x, (_, e1)) e2) h0 bs args =
compileFun gr arity st vs e _ _ _ = error (show e)
compileArg gr st vs (Q(m,id)) h0 bs =
let h1 = h0 + 2
in case lookupAbsDef gr m id of
Ok (_,Just _) -> (h1,bs,GLOBAL (i2i id),[])
case lookupAbsDef gr m id of
Ok (_,Just _) -> (h0,bs,GLOBAL (i2i id),[])
_ -> let Ok ty = lookupFunType gr m id
(ctxt,_,_) = typeForm ty
c_arity = length ctxt
h1 = h0 + 2
in if c_arity == 0
then (h1,bs,HEAP h0,[PUT_CONSTR (i2i id)])
else let is2 = [SET (ARG_VAR (i+1)) | i <- [0..c_arity-1]]