Skip to content

Commit 842c51c

Browse files
Update base/compiler/inferencestate.jl
Co-authored-by: Jeff Bezanson <[email protected]>
1 parent a9c6eb2 commit 842c51c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/compiler/inferencestate.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ should_insert_coverage(mod::MethodInstance) = should_insert_coverage(mod.def)
464464
should_insert_coverage(mod::Module) = false
465465
function should_insert_coverage(info::DebugInfo)
466466
linetable = info.linetable
467-
linetable === nothing || (should_insert_coverage(should_insert_coverage) && return true)
467+
linetable === nothing || (should_insert_coverage(linetable) && return true)
468468
should_insert_coverage(info.def) && return true
469469
return false
470470
end

0 commit comments

Comments
 (0)