diff options
author | Mike Pall <mike> | 2022-01-25 22:17:56 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2022-01-25 22:17:56 +0100 |
commit | c2237247cc3da9a8fdf3e6e3f367971d41a6f7f5 (patch) | |
tree | 453bbce6526531c5c6f0e1f5de686809e9f5ebba | |
parent | c50232eb320d56d526ba5e6cb5bda8cf5a848a55 (diff) | |
download | luajit-c2237247cc3da9a8fdf3e6e3f367971d41a6f7f5.tar.gz luajit-c2237247cc3da9a8fdf3e6e3f367971d41a6f7f5.tar.bz2 luajit-c2237247cc3da9a8fdf3e6e3f367971d41a6f7f5.zip |
Don't export internal symbol.
-rw-r--r-- | src/lj_snap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_snap.c b/src/lj_snap.c index 7a02c9a9..e2da4b3e 100644 --- a/src/lj_snap.c +++ b/src/lj_snap.c | |||
@@ -273,7 +273,7 @@ static BCReg snap_usedef(jit_State *J, uint8_t *udf, | |||
273 | } | 273 | } |
274 | 274 | ||
275 | /* Mark slots used by upvalues of child prototypes as used. */ | 275 | /* Mark slots used by upvalues of child prototypes as used. */ |
276 | void snap_useuv(GCproto *pt, uint8_t *udf) | 276 | static void snap_useuv(GCproto *pt, uint8_t *udf) |
277 | { | 277 | { |
278 | /* This is a coarse check, because it's difficult to correlate the lifetime | 278 | /* This is a coarse check, because it's difficult to correlate the lifetime |
279 | ** of slots and closures. But the number of false positives is quite low. | 279 | ** of slots and closures. But the number of false positives is quite low. |