We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669dfb9 commit 255c0b3Copy full SHA for 255c0b3
Python/jit_unwind.c
@@ -655,11 +655,11 @@ struct jit_descriptor {
655
struct jit_code_entry *first_entry;
656
};
657
658
-Py_EXPORTED_SYMBOL volatile struct jit_descriptor __jit_debug_descriptor = {
+static volatile struct jit_descriptor __jit_debug_descriptor = {
659
1, JIT_NOACTION, NULL, NULL
660
661
662
-PyAPI_FUNC(void) __attribute__((noinline)) __jit_debug_register_code(void)
+static void __attribute__((noinline)) __jit_debug_register_code(void)
663
{
664
/* Keep this call visible to debuggers and not optimized away. */
665
(void)__jit_debug_descriptor.action_flag;
0 commit comments