Skip to content

Commit 784c7d1

Browse files
committed
Fix merge issue
1 parent 6333177 commit 784c7d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

base/compiler/ssair/inlining.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ function ir_inline_item!(compact::IncrementalCompact, idx::Int, argexprs::Vector
332332
topline::Int32 = linetable_offset + Int32(1)
333333
coverage = coverage_enabled(def.module)
334334
coverage_by_path = JLOptions().code_coverage == 3
335-
push!(linetable, LineInfoNode(def.module, item.mi, def.file, Int(def.line), inlined_at))
335+
push!(linetable, LineInfoNode(def.module, item.mi, def.file, def.line, inlined_at))
336336
oldlinetable = spec.ir.linetable
337337
for oldline in 1:length(oldlinetable)
338338
entry = oldlinetable[oldline]

base/compiler/typeinfer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ function typeinf_ext(interp::AbstractInterpreter, mi::MethodInstance)
949949
tree.slotflags = fill(IR_FLAG_NULL, nargs)
950950
tree.ssavaluetypes = 1
951951
tree.codelocs = Int32[1]
952-
tree.linetable = [LineInfoNode(method.module, mi, method.file, Int(method.line), Int32(0))]
952+
tree.linetable = [LineInfoNode(method.module, mi, method.file, method.line, Int32(0))]
953953
tree.inferred = true
954954
tree.ssaflags = UInt8[0]
955955
tree.pure = true

0 commit comments

Comments
 (0)