diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-05-03 12:59:18 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-05-03 13:07:33 +0200 |
commit | 8abfa45f4c3ef3bf601fc15452a76b4b1ffefc1a (patch) | |
tree | ba1bfadb1a60d4b1a1ff103ad36d0fcffef90e5b /compiler/GHC/Runtime/Interpreter.hs | |
parent | 4a7809284354025d07221f0aeca10a7992d23677 (diff) | |
download | haskell-wip/fix-notes3.tar.gz |
Fix several note references, part 2wip/fix-notes3
Diffstat (limited to 'compiler/GHC/Runtime/Interpreter.hs')
-rw-r--r-- | compiler/GHC/Runtime/Interpreter.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Runtime/Interpreter.hs b/compiler/GHC/Runtime/Interpreter.hs index ed906279cc..a61578278f 100644 --- a/compiler/GHC/Runtime/Interpreter.hs +++ b/compiler/GHC/Runtime/Interpreter.hs @@ -200,7 +200,7 @@ interpCmd interp msg = case interpInstance interp of InternalInterp -> run msg -- Just run it directly #endif ExternalInterp c i -> withIServ_ c i $ \iserv -> - uninterruptibleMask_ $ -- Note [uninterruptibleMask_] + uninterruptibleMask_ $ -- Note [uninterruptibleMask_ and interpCmd] iservCall iserv msg |