[PATCH] D146947: [docs][clang] Added extra information inside the flag -fsanitize=unsigned-shift-base for UndefinedBehaviorSanitizer Fix : #60712
Tiwari Abhinav Ashok Kumar via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 27 07:43:53 PDT 2023
aabhinavg updated this revision to Diff 508655.
aabhinavg added a comment.
Done minor fix.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146947/new/
https://reviews.llvm.org/D146947
Files:
clang/docs/UndefinedBehaviorSanitizer.rst
Index: clang/docs/UndefinedBehaviorSanitizer.rst
===================================================================
--- clang/docs/UndefinedBehaviorSanitizer.rst
+++ clang/docs/UndefinedBehaviorSanitizer.rst
@@ -157,7 +157,8 @@
``-fsanitize=shift-exponent`` to check only left-hand side or
right-hand side of shift operation, respectively.
- ``-fsanitize=unsigned-shift-base``: check that an unsigned left-hand side of
- a left shift operation doesn't overflow.
+ a left shift operation doesn't overflow. Issues caught by this sanitizer are
+ not undefined behavior, but are often unintentional.
- ``-fsanitize=signed-integer-overflow``: Signed integer overflow, where the
result of a signed integer computation cannot be represented in its type.
This includes all the checks covered by ``-ftrapv``, as well as checks for
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146947.508655.patch
Type: text/x-patch
Size: 868 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230327/baf2f8a6/attachment.bin>
More information about the cfe-commits
mailing list