Skip to content

Commit 11410b2

Browse files
authored
Improve hygiene (#24)
Closes #23
1 parent b4debd8 commit 11410b2

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PrecompileTools"
22
uuid = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
33
authors = ["Tim Holy <[email protected]>", "t-bltg <[email protected]>", "and contributors"]
4-
version = "1.1.1"
4+
version = "1.1.2"
55

66
[deps]
77
Preferences = "21216c6a-2e73-6563-6e65-726566657250"

src/workloads.jl

+7-7
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ macro compile_workload(ex::Expr)
7171
ex = quote
7272
begin
7373
Base.Experimental.@force_compile
74-
$ex
74+
$(esc(ex))
7575
end
7676
end
7777
else
7878
# Use the hack on earlier Julia versions that blocks the interpreter
7979
ex = quote
8080
while false end
81-
$ex
81+
$(esc(ex))
8282
end
8383
end
8484
if have_inference_tracking
@@ -94,11 +94,11 @@ macro compile_workload(ex::Expr)
9494
$PrecompileTools.precompile_roots(Core.Compiler.Timings._timings[1].children)
9595
end
9696
end
97-
return esc(quote
97+
return quote
9898
if $iscompiling || $PrecompileTools.verbose[]
9999
$ex
100100
end
101-
end)
101+
end
102102
end
103103

104104
"""
@@ -131,9 +131,9 @@ macro setup_workload(ex::Expr)
131131
end
132132
# Ideally we'd like a `let` around this to prevent namespace pollution, but that seem to
133133
# trigger inference & codegen in undesirable ways (see #16).
134-
return esc(quote
134+
return quote
135135
if $iscompiling || $PrecompileTools.verbose[]
136-
$ex
136+
$(esc(ex))
137137
end
138-
end)
138+
end
139139
end

test/runtests.jl

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ using UUIDs
6565

6666
projfile = Base.active_project()
6767
Pkg.activate("PC_D")
68+
Pkg.instantiate()
6869
using PC_D
6970

7071
PrecompileTools.Preferences.set_preferences!(PC_D, "precompile_workload" => false)

0 commit comments

Comments
 (0)