diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-02-14 13:46:51 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-03-21 19:37:03 -0400 |
commit | 13531a68388c937eeef9c2c1fd477aa1a37c0fff (patch) | |
tree | 778cb639147788d07b0040aae63b3e5abcf448ac /rts/ClosureFlags.c | |
parent | 83cbc57c6149cc670713e508f70074ffeaa544ef (diff) | |
download | haskell-wip/ip_stack-frame.tar.gz |
rts: Mark closureFlags array as constwip/ip_stack-frame
Diffstat (limited to 'rts/ClosureFlags.c')
-rw-r--r-- | rts/ClosureFlags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ClosureFlags.c b/rts/ClosureFlags.c index 9007a9b5df..9caef370dd 100644 --- a/rts/ClosureFlags.c +++ b/rts/ClosureFlags.c @@ -9,7 +9,7 @@ #include "rts/PosixSource.h" #include "Rts.h" -StgWord16 closure_flags[] = { +const StgWord16 closure_flags[] = { /* ToDo: some of these flags seem to be duplicated. * - NS is the same as HNF, and the negation of THU |