Skip to content

Commit

Permalink
add missing LimitedAccuracy handling
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed May 10, 2021
1 parent a9c7ef2 commit c1699b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractinterpretation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ Returns true if the iteration may terminate
function iter_may_terminate(cond::Int64, dest::Int64, code::Vector{Any}, ssavaluetypes::Vector{Any})
cond_code = code[cond]
condt = ssavaluetypes[cond]
t = widenconditional(condt)
t = widenconditional(ignorelimited(condt))

if !(isa(cond_code, Expr) && cond_code.head === :call && cond_code.args[end] === GlobalRef(Base, :nothing) &&
isa(condt, CC.Conditional))
Expand Down

0 comments on commit c1699b1

Please sign in to comment.