Skip to content

Commit 255c0b3

Browse files
committed
Fix make smelly
1 parent 669dfb9 commit 255c0b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/jit_unwind.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -655,11 +655,11 @@ struct jit_descriptor {
655655
struct jit_code_entry *first_entry;
656656
};
657657

658-
Py_EXPORTED_SYMBOL volatile struct jit_descriptor __jit_debug_descriptor = {
658+
static volatile struct jit_descriptor __jit_debug_descriptor = {
659659
1, JIT_NOACTION, NULL, NULL
660660
};
661661

662-
PyAPI_FUNC(void) __attribute__((noinline)) __jit_debug_register_code(void)
662+
static void __attribute__((noinline)) __jit_debug_register_code(void)
663663
{
664664
/* Keep this call visible to debuggers and not optimized away. */
665665
(void)__jit_debug_descriptor.action_flag;

0 commit comments

Comments
 (0)