[llvm-branch-commits] [llvm] ReleaseNote: Mention SpecialCaseList change (PR #89141)
Fangrui Song via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Apr 17 23:37:39 PDT 2024
https://github.com/MaskRay updated https://github.com/llvm/llvm-project/pull/89141
>From a562fa55380991c37b0ec3ace83a98715795517a Mon Sep 17 00:00:00 2001
From: Fangrui Song <i at maskray.me>
Date: Wed, 17 Apr 2024 13:51:25 -0700
Subject: [PATCH 1/2] ReleaseNote: Mention SpecialCaseList change
---
llvm/docs/ReleaseNotes.rst | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index ecfcd2c983ce5e..453abc63397764 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -435,6 +435,12 @@ Changes to Sanitizers
---------------------
* HWASan now defaults to detecting use-after-scope bugs.
+* ``SpecialCaseList`` used by sanitizer ignore lists (e.g. ``*_ignorelist.txt``
+ in the Clang resource directory) now uses glob patterns instead of a variant
+ of POSIX Extended Regular Expression (where ``*`` is translated to ``.*``) by
+ default. Search for ``|`` to find patterns that may have different meanings
+ now.
+
Changes to the Profile Runtime
------------------------------
>From ac705f3426a08296b3125beb68ac941d1d7266fd Mon Sep 17 00:00:00 2001
From: Fangrui Song <i at maskray.me>
Date: Wed, 17 Apr 2024 23:37:28 -0700
Subject: [PATCH 2/2] Add a link
---
llvm/docs/ReleaseNotes.rst | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 453abc63397764..7c08935af385d2 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -435,11 +435,11 @@ Changes to Sanitizers
---------------------
* HWASan now defaults to detecting use-after-scope bugs.
-* ``SpecialCaseList`` used by sanitizer ignore lists (e.g. ``*_ignorelist.txt``
- in the Clang resource directory) now uses glob patterns instead of a variant
- of POSIX Extended Regular Expression (where ``*`` is translated to ``.*``) by
- default. Search for ``|`` to find patterns that may have different meanings
- now.
+* `SpecialCaseList <https://clang.llvm.org/docs/SanitizerSpecialCaseList.html#format>`_
+ used by sanitizer ignore lists (e.g. ``*_ignorelist.txt`` in the Clang
+ resource directory) now uses glob patterns instead of a variant of POSIX
+ Extended Regular Expression (where ``*`` is translated to ``.*``) by default.
+ Search for ``|`` to find patterns that may have different meanings now.
Changes to the Profile Runtime
------------------------------
More information about the llvm-branch-commits
mailing list