From e10868c0e053be75b0fe7f51a520c74b965e3790 Mon Sep 17 00:00:00 2001 From: fuhsnn <66062782+fuhsnn@users.noreply.github.com> Date: Thu, 10 Sep 2026 12:19:10 +0800 Subject: [PATCH] gh-157250: Remove superfluous symbol in inline assembly --- Include/internal/pycore_pystate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/pycore_pystate.h b/Include/internal/pycore_pystate.h index 253d26fe3a3cd8b..9efb23506b95052 100644 --- a/Include/internal/pycore_pystate.h +++ b/Include/internal/pycore_pystate.h @@ -324,7 +324,7 @@ _Py_get_machine_stack_pointer(void) { #elif defined(__aarch64__) __asm__ ("mov %0, sp" : "=r" (result)); #elif defined(__x86_64__) - __asm__("{movq %%rsp, %0" : "=r" (result)); + __asm__("movq %%rsp, %0" : "=r" (result)); #else char here; result = (uintptr_t)&here;