diff options
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 | ||