diff options
| author | Andrea Corallo | 2020-08-02 17:36:29 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-08-02 17:36:29 +0200 |
| commit | e5095f0fd31764a729b4afebf8b5e868a09eef28 (patch) | |
| tree | 9404b95851af889d2f3652db786bca6180394587 /src/data.c | |
| parent | 7a161dc688f0eeee64e307a55efbc7d11bab3627 (diff) | |
| parent | 99d1a66646b7450ad0be3e4471341b50fee7bdb5 (diff) | |
| download | emacs-e5095f0fd31764a729b4afebf8b5e868a09eef28.tar.gz emacs-e5095f0fd31764a729b4afebf8b5e868a09eef28.zip | |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/data.c b/src/data.c index 3088487c60c..e827695d295 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -23,6 +23,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 23 | #include <math.h> | 23 | #include <math.h> |
| 24 | #include <stdio.h> | 24 | #include <stdio.h> |
| 25 | 25 | ||
| 26 | #ifdef HAVE_SANITIZER_LSAN_INTERFACE_H | ||
| 27 | #include <sanitizer/lsan_interface.h> | ||
| 28 | #endif | ||
| 29 | |||
| 26 | #include <byteswap.h> | 30 | #include <byteswap.h> |
| 27 | #include <count-one-bits.h> | 31 | #include <count-one-bits.h> |
| 28 | #include <count-trailing-zeros.h> | 32 | #include <count-trailing-zeros.h> |
| @@ -1830,6 +1834,9 @@ make_blv (struct Lisp_Symbol *sym, bool forwarded, | |||
| 1830 | set_blv_defcell (blv, tem); | 1834 | set_blv_defcell (blv, tem); |
| 1831 | set_blv_valcell (blv, tem); | 1835 | set_blv_valcell (blv, tem); |
| 1832 | set_blv_found (blv, false); | 1836 | set_blv_found (blv, false); |
| 1837 | #ifdef HAVE___LSAN_IGNORE_OBJECT | ||
| 1838 | __lsan_ignore_object (blv); | ||
| 1839 | #endif | ||
| 1833 | return blv; | 1840 | return blv; |
| 1834 | } | 1841 | } |
| 1835 | 1842 | ||