diff options
| author | Andrea Corallo | 2020-08-09 15:03:23 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-08-09 15:03:23 +0200 |
| commit | 12a982d9789052d8e85efcacb4b311f4876c882a (patch) | |
| tree | a452a8e888c6ee9c85d6a487359b7a1c0c9fa15b /src/data.c | |
| parent | 80d7f710f2fab902e46aa3fddb8e1c1795420af3 (diff) | |
| parent | 8e82baf5a730ff542118ddba5b76afdc1db643f6 (diff) | |
| download | emacs-12a982d9789052d8e85efcacb4b311f4876c882a.tar.gz emacs-12a982d9789052d8e85efcacb4b311f4876c882a.zip | |
Merge remote-tracking branch 'savannah/master' into HEAD
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 | ||