[PATCH] D19541: Fix generation of documentation for UndefinedBehaviorSanitizer.

Etienne Bergeron via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 26 10:21:27 PDT 2016


etienneb created this revision.
etienneb added a reviewer: alexfh.
etienneb added a subscriber: cfe-commits.

The text is mis-aligned.

http://reviews.llvm.org/D19541

Files:
  docs/UndefinedBehaviorSanitizer.rst

Index: docs/UndefinedBehaviorSanitizer.rst
===================================================================
--- docs/UndefinedBehaviorSanitizer.rst
+++ docs/UndefinedBehaviorSanitizer.rst
@@ -93,13 +93,13 @@
   -  ``-fsanitize=null``: Use of a null pointer or creation of a null
      reference.
   -  ``-fsanitize=object-size``: An attempt to potentially use bytes which
-    the optimizer can determine are not part of the object being accessed.
-    This will also detect some types of undefined behavior that may not
-    directly access memory, but are provably incorrect given the size of
-    the objects involved, such as invalid downcasts and calling methods on
-    invalid pointers. These checks are made in terms of
-    ``__builtin_object_size``, and consequently may be able to detect more
-    problems at higher optimization levels.
+     the optimizer can determine are not part of the object being accessed.
+     This will also detect some types of undefined behavior that may not
+     directly access memory, but are provably incorrect given the size of
+     the objects involved, such as invalid downcasts and calling methods on
+     invalid pointers. These checks are made in terms of
+     ``__builtin_object_size``, and consequently may be able to detect more
+     problems at higher optimization levels.
   -  ``-fsanitize=return``: In C++, reaching the end of a
      value-returning function without returning a value.
   -  ``-fsanitize=returns-nonnull-attribute``: Returning null pointer


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D19541.55032.patch
Type: text/x-patch
Size: 1524 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160426/5bb18210/attachment.bin>


More information about the cfe-commits mailing list