aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPo Lu2023-05-15 10:38:10 +0800
committerPo Lu2023-05-15 10:38:10 +0800
commita46e231a5f27c46933cc53865cee452ad1a0c0d3 (patch)
tree8694852f6b7fd201736cf48a0f72f139a9a76ff8 /src/alloc.c
parent45ab9158cf1a94041ad65c66818dde56e7c1c43b (diff)
parentebf5e4ca1cd39d3f23c4e37d9bdfeb2bf347df6d (diff)
downloademacs-a46e231a5f27c46933cc53865cee452ad1a0c0d3.tar.gz
emacs-a46e231a5f27c46933cc53865cee452ad1a0c0d3.zip
Merge remote-tracking branch 'origin/master' into feature/android
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 8d012b1b3b6..d87cc44b59b 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -5351,15 +5351,6 @@ typedef union
5351#endif 5351#endif
5352} stacktop_sentry; 5352} stacktop_sentry;
5353 5353
5354/* Yield an address close enough to the top of the stack that the
5355 garbage collector need not scan above it. Callers should be
5356 declared NO_INLINE. */
5357#ifdef HAVE___BUILTIN_FRAME_ADDRESS
5358# define NEAR_STACK_TOP(addr) ((void) (addr), __builtin_frame_address (0))
5359#else
5360# define NEAR_STACK_TOP(addr) (addr)
5361#endif
5362
5363/* Set *P to the address of the top of the stack. This must be a 5354/* Set *P to the address of the top of the stack. This must be a
5364 macro, not a function, so that it is executed in the caller's 5355 macro, not a function, so that it is executed in the caller's
5365 environment. It is not inside a do-while so that its storage 5356 environment. It is not inside a do-while so that its storage