[Git][ghc/ghc][wip/buggymcbugfix/arrayOf-primop] Add array cases to static object evacuation
Vilem-Benjamin Liepelt
gitlab at gitlab.haskell.org
Wed Jun 24 16:16:13 UTC 2020
Vilem-Benjamin Liepelt pushed to branch wip/buggymcbugfix/arrayOf-primop at Glasgow Haskell Compiler / GHC
Commits:
e1e69e30 by buggymcbugfix at 2020-06-24T17:15:41+01:00
Add array cases to static object evacuation
- - - - -
1 changed file:
- rts/sm/Evac.c
Changes:
=====================================
rts/sm/Evac.c
=====================================
@@ -631,6 +631,13 @@ loop:
*/
return;
+ case SMALL_MUT_ARR_PTRS_CLEAN:
+ case SMALL_MUT_ARR_PTRS_DIRTY:
+ case SMALL_MUT_ARR_PTRS_FROZEN_CLEAN:
+ case SMALL_MUT_ARR_PTRS_FROZEN_DIRTY:
+ // todo
+ return;
+
default:
barf("evacuate(static): strange closure type %d", (int)(info->type));
}
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/e1e69e30a428696dc32d3c2e2888823cfa0a701e
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/e1e69e30a428696dc32d3c2e2888823cfa0a701e
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200624/d1bce829/attachment-0001.html>
More information about the ghc-commits
mailing list