[clang] 84b7086 - [rtsan] NFC: Update docs with suppress_equal_stacks (#117187)

via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 21 10:53:56 PST 2024


Author: Chris Apple
Date: 2024-11-21T10:53:53-08:00
New Revision: 84b70869e6227720e93aad35bd184a8742c94d82

URL: https://github.com/llvm/llvm-project/commit/84b70869e6227720e93aad35bd184a8742c94d82
DIFF: https://github.com/llvm/llvm-project/commit/84b70869e6227720e93aad35bd184a8742c94d82.diff

LOG: [rtsan] NFC: Update docs with suppress_equal_stacks (#117187)

Added: 
    

Modified: 
    clang/docs/RealtimeSanitizer.rst

Removed: 
    


################################################################################
diff  --git a/clang/docs/RealtimeSanitizer.rst b/clang/docs/RealtimeSanitizer.rst
index 5431e38fea62ec..233a91f6684162 100644
--- a/clang/docs/RealtimeSanitizer.rst
+++ b/clang/docs/RealtimeSanitizer.rst
@@ -167,7 +167,11 @@ A **partial** list of flags RealtimeSanitizer respects:
    * - ``halt_on_error``
      - ``true``
      - boolean
-     - Exit after first reported error. If false (continue after a detected error), deduplicates error stacks so errors appear only once.
+     - Exit after first reported error.
+   * - ``suppress_equal_stacks``
+     - ``true``
+     - boolean
+     - If true, suppress duplicate reports (i.e. only print each unique error once). Only particularly useful when ``halt_on_error=false``.
    * - ``print_stats_on_exit``
      - ``false``
      - boolean


        


More information about the cfe-commits mailing list