Skip to content

Commit 8cab827

Browse files
committed
s/┘/└/g
1 parent a4b9190 commit 8cab827

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

base/compiler/ssair/show.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ function DILineInfoPrinter(linetable::Vector)
338338
# convert lineidx to a vector
339339
if lineidx < 0
340340
# sentinel value: reset internal (and external) state
341-
pops = indent("")
341+
pops = indent("")
342342
if !isempty(pops)
343343
print(io, linestart)
344344
printstyled(io, pops; color=linecolor)
@@ -414,7 +414,7 @@ function DILineInfoPrinter(linetable::Vector)
414414
if npops > 0
415415
context_depth[] -= npops
416416
print(io, linestart)
417-
printstyled(io, indent(""), ""^npops; color=linecolor)
417+
printstyled(io, indent(""), ""^npops; color=linecolor)
418418
println(io)
419419
end
420420
end

src/disasm.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static raw_ostream &operator<<(raw_ostream &Out, struct DILineInfoPrinter::repea
157157

158158
void DILineInfoPrinter::emit_finish(raw_ostream &Out)
159159
{
160-
auto pops = inlining_indent("");
160+
auto pops = inlining_indent("");
161161
if (pops.times > 0)
162162
Out << LineStart << pops << '\n';
163163
context.clear();
@@ -225,7 +225,7 @@ void DILineInfoPrinter::emit_lineinfo(raw_ostream &Out, std::vector<DILineInfo>
225225
update_line_only && (npops -= 1);
226226
if (npops > 0) {
227227
this->inline_depth -= npops;
228-
Out << LineStart << inlining_indent("") << repeat{npops, ""} << '\n';
228+
Out << LineStart << inlining_indent("") << repeat{npops, ""} << '\n';
229229
}
230230
}
231231
// see what change we made to the outermost line number

stdlib/Test/src/Test.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ Body::UNION{FLOAT64, INT64}
12841284
┌ @ operators.jl:286 within `>'
12851285
│┌ @ int.jl:49 within `<'
12861286
1 ─││ %1 = (Base.slt_int)(1, b)::Bool
1287-
┘┘
1287+
└└
12881288
└── goto #3 if not %1
12891289
2 ─ return 1
12901290
3 ─ return 1.0

0 commit comments

Comments
 (0)