diff options
| author | Mattias EngdegÄrd | 2022-02-06 17:57:46 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-02-06 17:57:46 +0100 |
| commit | ead36d8d36553f7f7bbed1dd3d28eda926c51bac (patch) | |
| tree | 6e8d907b12ece6e37e9228d01341ad955d05fd05 /src/alloc.c | |
| parent | b0fd3ec2c0131e79b1c62e1f1beb6f29cf076120 (diff) | |
| download | emacs-ead36d8d36553f7f7bbed1dd3d28eda926c51bac.tar.gz emacs-ead36d8d36553f7f7bbed1dd3d28eda926c51bac.zip | |
; * src/alloc.c (mark_memory): Fix outdated comment.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index e01ea36e642..5d7b484f6ea 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4925,8 +4925,8 @@ mark_maybe_pointer (void *p, bool symbol_only) | |||
| 4925 | miss objects if __alignof__ were used. */ | 4925 | miss objects if __alignof__ were used. */ |
| 4926 | #define GC_POINTER_ALIGNMENT alignof (void *) | 4926 | #define GC_POINTER_ALIGNMENT alignof (void *) |
| 4927 | 4927 | ||
| 4928 | /* Mark Lisp objects referenced from the address range START+OFFSET..END | 4928 | /* Mark Lisp objects referenced from the address range START..END |
| 4929 | or END+OFFSET..START. */ | 4929 | or END..START. */ |
| 4930 | 4930 | ||
| 4931 | static void ATTRIBUTE_NO_SANITIZE_ADDRESS | 4931 | static void ATTRIBUTE_NO_SANITIZE_ADDRESS |
| 4932 | mark_memory (void const *start, void const *end) | 4932 | mark_memory (void const *start, void const *end) |