Skip to content

Commit

Permalink
remove old code
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Nov 28, 2023
1 parent ef12495 commit ce8634c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/LoweredCodeUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using JuliaInterpreter
using JuliaInterpreter: SSAValue, SlotNumber, Frame
using JuliaInterpreter: @lookup, moduleof, pc_expr, step_expr!, is_global_ref, is_quotenode_egal, whichtt,
next_until!, finish_and_return!, get_return, nstatements, codelocation, linetable,
is_return, lookup_return, is_GotoIfNot, is_ReturnNode
is_return, lookup_return

include("packagedef.jl")

Expand Down
8 changes: 4 additions & 4 deletions src/codeedges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -307,10 +307,10 @@ function add_links!(target::Pair{Union{SSAValue,SlotNumber,NamedVar},Links}, @no
for i in arng
add_links!(target, stmt.args[i], cl)
end
elseif is_GotoIfNot(stmt)
add_links!(target, (stmt::Core.GotoIfNot).cond, cl)
elseif is_ReturnNode(stmt)
add_links!(target, (stmt::Core.ReturnNode).val, cl)
elseif stmt isa Core.GotoIfNot
add_links!(target, stmt.cond, cl)
elseif stmt isa Core.ReturnNode
add_links!(target, stmt.val, cl)
end
return nothing
end
Expand Down

0 comments on commit ce8634c

Please sign in to comment.