diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-11-06 18:25:54 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-07 21:25:36 -0500 |
commit | 0d141d28cf6632d1bd0ca1aaf0f302121a3fa3a2 (patch) | |
tree | dcba1dd9518baed51bcd2904ad506adb28a8d071 | |
parent | ae431cf4f3bf4ee46098f4dfad1d9f2ccbc7a251 (diff) | |
download | haskell-0d141d28cf6632d1bd0ca1aaf0f302121a3fa3a2.tar.gz |
rts: Remove undesireable inline specifier
I have no idea why I marked this as inline originally but clearly it
shouldn't be inlined.
-rw-r--r-- | rts/sm/NonMovingCensus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/NonMovingCensus.c b/rts/sm/NonMovingCensus.c index 670d51263c..2dcec4b745 100644 --- a/rts/sm/NonMovingCensus.c +++ b/rts/sm/NonMovingCensus.c @@ -20,7 +20,7 @@ // all_stopped is whether we can guarantee that all mutators and minor GCs are // stopped. In this case is safe to look at active and current segments so we can // also collect statistics on live words. -static inline struct NonmovingAllocCensus +static struct NonmovingAllocCensus nonmovingAllocatorCensus_(struct NonmovingAllocator *alloc, bool collect_live_words) { struct NonmovingAllocCensus census = {0, 0, 0, 0}; |