diff options
author | Vlad Tsyrklevich <vlad@tsyrklevich.net> | 2018-04-12 19:35:39 +0000 |
---|---|---|
committer | Vlad Tsyrklevich <vlad@tsyrklevich.net> | 2018-04-12 19:35:39 +0000 |
commit | 8b74db9cc7387f1c18db74a737541b0e5025896a (patch) | |
tree | 18c1760c09a032beb59c4a15bcc2ee2a5b2f8766 /clang | |
parent | 0c5300a93f124d64c0bdbb1665386ad4579aeb5d (diff) | |
download | bcm5719-llvm-8b74db9cc7387f1c18db74a737541b0e5025896a.tar.gz bcm5719-llvm-8b74db9cc7387f1c18db74a737541b0e5025896a.zip |
Fix doc typo
llvm-svn: 329942
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/ControlFlowIntegrity.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/ControlFlowIntegrity.rst b/clang/docs/ControlFlowIntegrity.rst index 12b4610f8a2..35b03a0e639 100644 --- a/clang/docs/ControlFlowIntegrity.rst +++ b/clang/docs/ControlFlowIntegrity.rst @@ -224,8 +224,8 @@ flag relax pointer type checking for call sites in that translation unit, applied across all functions compiled with ``-fsanitize=cfi-icall``. Specifically, pointers in return and argument types are treated as equivalent as -long as the qualifiers for the type they point to match. For example, ``char*`` -``char**`, and ``int*`` are considered equivalent types. However, ``char*`` and +long as the qualifiers for the type they point to match. For example, ``char*``, +``char**``, and ``int*`` are considered equivalent types. However, ``char*`` and ``const char*`` are considered separate types. ``-fsanitize-cfi-icall-generalize-pointers`` is not compatible with |