[PATCH] D139737: [-Wunsafe-buffer-usage] Initiate Fix-it generation for local variable declarations
Ziqing Luo via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 6 13:39:24 PST 2023
ziqingluo-90 updated this revision to Diff 495263.
ziqingluo-90 added a comment.
To avoid emitting incorrect fix-its for array subscripts on `span` objects:
- For unsafe operations of the form `s[e]` where `s` is being transformed to be a `span`, we only emit fix-its for `s[e]` when `e` is a non-negative integer literal or `e` has an unsigned integer type.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139737/new/
https://reviews.llvm.org/D139737
Files:
clang/include/clang/Analysis/Analyses/UnsafeBufferUsage.h
clang/include/clang/Analysis/Analyses/UnsafeBufferUsageGadgets.def
clang/include/clang/Basic/DiagnosticSemaKinds.td
clang/lib/Analysis/UnsafeBufferUsage.cpp
clang/lib/Sema/AnalysisBasedWarnings.cpp
clang/test/SemaCXX/warn-unsafe-buffer-usage-fixits-local-var-span.cpp
clang/test/SemaCXX/warn-unsafe-buffer-usage.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139737.495263.patch
Type: text/x-patch
Size: 30067 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230206/a67f710f/attachment-0001.bin>
More information about the cfe-commits
mailing list