summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Wilson <douglas.wilson@gmail.com>2022-06-16 17:07:54 +0100
committerDouglas Wilson <douglas.wilson@gmail.com>2022-06-16 17:07:54 +0100
commit2056230aede7fcc035557edfada8507c6dc48555 (patch)
tree098f8663c84dd369e60850af48438d3c6eaca86e
parentac83899dcb5931913699d191f2c46780483ed07e (diff)
downloadhaskell-2056230aede7fcc035557edfada8507c6dc48555.tar.gz
driver: ensure we always use pluginswip/T21279
-rw-r--r--compiler/GHC/Driver/Pipeline.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Pipeline.hs b/compiler/GHC/Driver/Pipeline.hs
index e988979df2..ae66114332 100644
--- a/compiler/GHC/Driver/Pipeline.hs
+++ b/compiler/GHC/Driver/Pipeline.hs
@@ -241,7 +241,7 @@ compileOne' mHscMessage
status <- hscRecompStatus mHscMessage plugin_hsc_env upd_summary
mb_old_iface mb_old_linkable (mod_index, nmods)
let pipeline = hscPipeline pipe_env (setDumpPrefix pipe_env plugin_hsc_env, upd_summary, status)
- (iface, linkable) <- runPipeline (hsc_hooks hsc_env) pipeline
+ (iface, linkable) <- runPipeline (hsc_hooks plugin_hsc_env) pipeline
-- See Note [ModDetails and --make mode]
details <- initModDetails plugin_hsc_env upd_summary iface
return $! HomeModInfo iface details linkable