diff options
Diffstat (limited to 'compiler/GHC/Iface/Tidy.hs')
-rw-r--r-- | compiler/GHC/Iface/Tidy.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Iface/Tidy.hs b/compiler/GHC/Iface/Tidy.hs index 28c2cbc54d..8f3c15e508 100644 --- a/compiler/GHC/Iface/Tidy.hs +++ b/compiler/GHC/Iface/Tidy.hs @@ -395,7 +395,7 @@ tidyProgram hsc_env (ModGuts { mg_module = mod case backend dflags of -- If we are compiling for the interpreter we will insert -- any necessary SPT entries dynamically - Interpreter -> id + Just Interpreter -> id -- otherwise add a C stub to do so _ -> (`appendStubC` spt_init_code) |