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 859ff98 commit 25df308Copy full SHA for 25df308
2 files changed
Python/asm_trampoline_aarch64.S
@@ -36,6 +36,7 @@
36
#endif
37
38
.text
39
+#if defined(__aarch64__) && defined(__AARCH64EL__) && !defined(__ILP32__)
40
#if defined(__APPLE__)
41
.globl __Py_trampoline_func_start
42
__Py_trampoline_func_start:
@@ -73,3 +74,4 @@ _Py_trampoline_func_end:
73
74
.long 0; /* padding for 8 byte alignment */
75
.popsection; /* end the section */
76
77
+#endif // __aarch64__ && __AARCH64EL__ && !__ILP32__
Python/asm_trampoline_x86_64.S
@@ -1,4 +1,5 @@
1
2
+#ifdef __x86_64__
3
4
5
@@ -41,3 +42,4 @@ _Py_trampoline_func_end:
.align 8
43
4:
44
45
+#endif // __x86_64__
0 commit comments