Skip to content

Commit

Permalink
fix #572, handle exct on v1.10 properly (#567)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk authored Jun 4, 2024
1 parent 5d3d80c commit dd3a2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cthulhu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ function lookup_constproped_optimized(interp::CthulhuInterpreter, override::Infe
# e.g. when we switch from constant-prop' unoptimized source
src = CC.copy(opt.ir)
rt = override.result
exct = override.exc_result
exct = @static hasfield(InferenceResult, :exc_result) ? override.exc_result : nothing
infos = src.stmts.info
slottypes = src.argtypes
codeinf = opt.src
Expand Down

2 comments on commit dd3a2b5

@aviatesk
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Version 2.12.5 already exists

Please sign in to comment.