Skip to content

Commit 428c073

Browse files
committed
Do not return fro unlikely branch
1 parent 62b68c8 commit 428c073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1brc/Utf8Span.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ internal nuint IndexOfSemicolon()
223223
nuint tzc = (uint)BitOperations.TrailingZeroCount(mask);
224224

225225
if (mask == 0) // For non-taken branches prefer placing them in a "leaf" instead of mask != 0, somewhere on GH they explain why, it would be nice to find.
226-
return IndexOfSemicolonCont(this);
226+
tzc = IndexOfSemicolonCont(this);
227227

228228
return tzc;
229229

0 commit comments

Comments
 (0)