[all-commits] [llvm/llvm-project] 88d82b: [libc] fix more readability-identifier-naming lint...
Nick Desaulniers via All-commits
all-commits at lists.llvm.org
Tue Mar 5 08:16:08 PST 2024
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 88d82b747cdc521686e6bbc108b021753842a902
https://github.com/llvm/llvm-project/commit/88d82b747cdc521686e6bbc108b021753842a902
Author: Nick Desaulniers <nickdesaulniers at users.noreply.github.com>
Date: 2024-03-05 (Tue, 05 Mar 2024)
Changed paths:
M libc/src/__support/blockstore.h
M libc/src/__support/integer_to_string.h
M libc/src/__support/math_extras.h
M libc/src/math/generic/hypotf.cpp
M libc/src/string/memory_utils/op_generic.h
M libc/src/string/memory_utils/op_x86.h
M libc/src/string/memory_utils/utils.h
M libc/src/string/memory_utils/x86_64/inline_memcpy.h
M libc/src/string/memory_utils/x86_64/inline_memset.h
Log Message:
-----------
[libc] fix more readability-identifier-naming lints (#83914)
Found via:
$ ninja -k2000 libc-lint 2>&1 | grep readability-identifier-naming
Auto fixed via:
$ clang-tidy -p build/compile_commands.json \
-checks="-*,readability-identifier-naming" \
<filename> --fix
This doesn't fix all instances, just the obvious simple cases where it makes
sense to change the identifier names. Subsequent PRs will fix up the
stragglers.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list