Skip to content
Snippets Groups Projects
Commit 0865fe94 authored by George Burgess IV's avatar George Burgess IV
Browse files

[Docs] Fix indentation error introduced by r267447.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@267501 91177308-0d34-0410-b5e6-96231b3b80d8
parent 2caa0158
No related branches found
No related tags found
No related merge requests found
...@@ -93,13 +93,13 @@ Available checks are: ...@@ -93,13 +93,13 @@ Available checks are:
- ``-fsanitize=null``: Use of a null pointer or creation of a null - ``-fsanitize=null``: Use of a null pointer or creation of a null
reference. reference.
- ``-fsanitize=object-size``: An attempt to potentially use bytes which - ``-fsanitize=object-size``: An attempt to potentially use bytes which
the optimizer can determine are not part of the object being accessed. the optimizer can determine are not part of the object being accessed.
This will also detect some types of undefined behavior that may not This will also detect some types of undefined behavior that may not
directly access memory, but are provably incorrect given the size of directly access memory, but are provably incorrect given the size of
the objects involved, such as invalid downcasts and calling methods on the objects involved, such as invalid downcasts and calling methods on
invalid pointers. These checks are made in terms of invalid pointers. These checks are made in terms of
``__builtin_object_size``, and consequently may be able to detect more ``__builtin_object_size``, and consequently may be able to detect more
problems at higher optimization levels. problems at higher optimization levels.
- ``-fsanitize=return``: In C++, reaching the end of a - ``-fsanitize=return``: In C++, reaching the end of a
value-returning function without returning a value. value-returning function without returning a value.
- ``-fsanitize=returns-nonnull-attribute``: Returning null pointer - ``-fsanitize=returns-nonnull-attribute``: Returning null pointer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment