Skip to content

Commit da3fee2

Browse files
committed
remove unused import
1 parent 2a1c076 commit da3fee2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/packagedef.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Base.Meta
22
import Base: +, -, convert, isless, get_world_counter
3-
using Core: CodeInfo, SimpleVector, LineInfoNode, GotoNode, Slot,
3+
using Core: CodeInfo, SimpleVector, LineInfoNode, GotoNode,
44
GeneratedFunctionStub, MethodInstance, NewvarNode, TypeName
55

66
using UUIDs
@@ -150,7 +150,7 @@ function __init__()
150150
# compiled_calls[(qsym, RT, Core.svec(AT...), Core.Compiler)] = f
151151
# precompile(f, AT)
152152
# end
153-
153+
154154
@static if isdefined(Base, :have_fma)
155155
FMA_FLOAT64[] = _have_fma_compiled(Float64)
156156
FMA_FLOAT32[] = _have_fma_compiled(Float32)

test/interpret.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ f_562(x::Union{Vector{T}, Nothing}) where {T} = x + 1
569569
try
570570
break_on(:error)
571571
local frame, bp = @interpret f_562(nothing)
572-
572+
573573
stacktrace_lines = split(sprint(Base.display_error, bp.err, leaf(frame)), '\n')
574574
@test stacktrace_lines[1] == "ERROR: MethodError: no method matching +(::Nothing, ::Int64)"
575575
finally

0 commit comments

Comments
 (0)