Add new manual_ilog10 perf lint#17312
Open
GuillaumeGomez wants to merge 1 commit into
Open
Conversation
c5e57d5 to
0a1a340
Compare
0a1a340 to
e04ad10
Compare
samueltardieu
requested changes
Jun 28, 2026
Member
|
@rustbot label lint-nominated |
Collaborator
|
This lint has been nominated for inclusion. |
Member
Author
Is there a process when a lint is renamed? Because I'd like to not have two lints for the kinda same thing. |
Member
|
I'm proposing to rename the file, not to rename the lint. If you want to propose renaming the lint, please discuss this in the FCP Zulip thread. If this is the accepted solution, then |
Collaborator
|
☔ The latest upstream changes (possibly #17329) made this pull request unmergeable. Please resolve the merge conflicts. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There is already an existing
manual_ilog2, so maybe instead of creating this new lint, we should deprecatemanual_ilog2and create a more globalmanual_ilog_n?Anyway,
ilog10is more performant thanilog(10)(as indicated in the docs), so if possible, we should always use it instead (same forilog2/ilog(2)).changelog: Add new
manual_ilog10r? @samueltardieu