Skip to content

Commit dd5f6bc

Browse files
committed
remove info log to see its performance impact
1 parent a99b50c commit dd5f6bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tapedfunction.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,12 +281,12 @@ function bind_var!(var_literal, tbind::TempBindings, ir::Core.CodeInfo)
281281
return idx
282282
end
283283
function bind_var!(var::GlobalRef, tbind::TempBindings, ir::Core.CodeInfo)
284-
in(var.mod, (Base, Core)) ||
285-
@info "evaluating GlobalRef $var at compile time"
284+
# in(var.mod, (Base, Core)) ||
285+
# @info "evaluating GlobalRef $var at compile time"
286286
bind_var!(getproperty(var.mod, var.name), tbind, ir)
287287
end
288288
function bind_var!(var::QuoteNode, tbind::TempBindings, ir::Core.CodeInfo)
289-
@info "evaluating QuoteNode $var at compile time"
289+
# @info "evaluating QuoteNode $var at compile time"
290290
bind_var!(eval(var), tbind, ir)
291291
end
292292
function bind_var!(var::Core.TypedSlot, tbind::TempBindings, ir::Core.CodeInfo)

0 commit comments

Comments
 (0)