Skip to content

Commit 7f9f6cd

Browse files
committed
Add comment to asm file
1 parent f77d427 commit 7f9f6cd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Objects/asm_trampoline.S

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
.text
22
.globl _Py_trampoline_func_start
3+
# The following assembly is equivalent to:
4+
# PyObject *
5+
# trampoline(py_evaluator evaluator, PyThreadState *ts,
6+
# _PyInterpreterFrame *f, int throwflag)
7+
# {
8+
# return evaluator(ts, f, throwflag);
9+
# }
310
_Py_trampoline_func_start:
411
#ifdef __x86_64__
512
push %rbp

0 commit comments

Comments
 (0)