Skip to content

Commit

Permalink
Speed up split (#2107)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses authored Nov 18, 2024
1 parent be79847 commit 5185b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ function removed_ret_parms(F::LLVM.Function)
end
if parmrem !== nothing
str = value(parmrem)
for v in split(str, ",")
for v in eachsplit(str, ",")
push!(parmsRemoved, parse(UInt64, v))
end
end
Expand Down

0 comments on commit 5185b0f

Please sign in to comment.