From 2fb11ebc36a6604adb1e0f0331aeae48a95df212 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 24 Aug 2010 18:12:35 +0000 Subject: [PATCH] Document '__clang_analyzer__'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111935 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/UsersManual.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/docs/UsersManual.html b/docs/UsersManual.html index 205c95d309..75241610a3 100644 --- a/docs/UsersManual.html +++ b/docs/UsersManual.html @@ -39,6 +39,7 @@ td {
  • Diagnostic Categories
  • Controlling Diagnostics via Command Line Flags
  • Controlling Diagnostics via Pragmas
  • +
  • Controlling Static Analyzer Diagnostics
  • Precompiled Headers
  • Controlling Code Generation
  • @@ -591,6 +592,42 @@ GCC do not support the exact same set of warnings, so even when using GCC compatible #pragmas there is no guarantee that they will have identical behaviour on both compilers.

    +

    Controlling Static Analyzer Diagnostics

    + +

    While not strictly part of the compiler, the diagnostics from Clang's static analyzer can also be influenced +by the user via changes to the source code. This can be done in two ways: + +

    +

    Precompiled Headers

    -- 2.50.1