diff options
-rw-r--r-- | log.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -284,3 +284,12 @@ Start = append (fromto 1 15) (fromto 30 40) Only the first works in the gc-flipped branches with `-gcc -h 1k`, but all work with `-gcm -h 1k`. + +### 2016-10-19 + +We're now working with node entry addresses *plus one*. There is some +information stored right before the node entry, such as arity, which is used in +the garbage collector (among other places?). This was previously fetched with +`[r6,#-4]` for example, and should now be fetched with `[r6,#-5]` to +accommodate for this. This is done in cg:gc-flipped `56d30f5` and +rts:gc-flipped `9f522d3`. |