Skip to content
Snippets Groups Projects
Commit 4a4b0491 authored by Zubin's avatar Zubin
Browse files

GHCi: Lookup breakpoint CCs in the correct module

We need to look up breakpoint CCs in the module that the breakpoint
points to, and not the current module.

Fixes #24327
parent c929f02b
No related branches found
No related tags found
No related merge requests found
Pipeline #88541 failed
......@@ -391,8 +391,7 @@ schemeER_wrk d p (StgTick (Breakpoint tick_ty tick_no fvs mod) rhs) = do
current_mod_breaks <- getCurrentModBreaks
case break_info hsc_env mod current_mod current_mod_breaks of
Nothing -> pure code
Just ModBreaks {modBreaks_flags = breaks, modBreaks_module = mod_ptr} -> do
cc_arr <- getCCArray
Just ModBreaks {modBreaks_flags = breaks, modBreaks_module = mod_ptr, modBreaks_ccs = cc_arr} -> do
platform <- profilePlatform <$> getProfile
let idOffSets = getVarOffSets platform d p fvs
ty_vars = tyCoVarsOfTypesWellScoped (tick_ty:map idType fvs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment