diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-06 13:08:37 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-11 05:10:04 -0500 |
commit | aba51b65863db5f2687f29d10ba24ffa49dabd3b (patch) | |
tree | dc82a63a7423f54d37917e72ffea8cbd03360bc7 /includes/stg | |
parent | b75e7486de73868e6821a9f680e9e13794dff15c (diff) | |
download | haskell-aba51b65863db5f2687f29d10ba24ffa49dabd3b.tar.gz |
Add arithmetic exception primops (#14664)
Diffstat (limited to 'includes/stg')
-rw-r--r-- | includes/stg/MiscClosures.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h index 34ec3e5f7b..0843b95b37 100644 --- a/includes/stg/MiscClosures.h +++ b/includes/stg/MiscClosures.h @@ -415,6 +415,9 @@ RTS_FUN_DECL(stg_asyncDoProczh); RTS_FUN_DECL(stg_catchzh); RTS_FUN_DECL(stg_raisezh); +RTS_FUN_DECL(stg_raiseDivZZerozh); +RTS_FUN_DECL(stg_raiseUnderflowzh); +RTS_FUN_DECL(stg_raiseOverflowzh); RTS_FUN_DECL(stg_raiseIOzh); RTS_FUN_DECL(stg_makeStableNamezh); |