diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c index e827695d295..33711368f13 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -23,10 +23,6 @@ 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 | |||
| 30 | #include <byteswap.h> | 26 | #include <byteswap.h> |
| 31 | #include <count-one-bits.h> | 27 | #include <count-one-bits.h> |
| 32 | #include <count-trailing-zeros.h> | 28 | #include <count-trailing-zeros.h> |
| @@ -1834,9 +1830,7 @@ make_blv (struct Lisp_Symbol *sym, bool forwarded, | |||
| 1834 | set_blv_defcell (blv, tem); | 1830 | set_blv_defcell (blv, tem); |
| 1835 | set_blv_valcell (blv, tem); | 1831 | set_blv_valcell (blv, tem); |
| 1836 | set_blv_found (blv, false); | 1832 | set_blv_found (blv, false); |
| 1837 | #ifdef HAVE___LSAN_IGNORE_OBJECT | ||
| 1838 | __lsan_ignore_object (blv); | 1833 | __lsan_ignore_object (blv); |
| 1839 | #endif | ||
| 1840 | return blv; | 1834 | return blv; |
| 1841 | } | 1835 | } |
| 1842 | 1836 | ||