What is this C++ Syntax:
static void *opcode_targets[256] = {
&&_unknown_opcode,
&&TARGET_POP_TOP,
...
}
I found that in the cpython source code
Is it a function? Why &&
is added at the beginning?
What is this C++ Syntax:
static void *opcode_targets[256] = {
&&_unknown_opcode,
&&TARGET_POP_TOP,
...
}
I found that in the cpython source code
Is it a function? Why &&
is added at the beginning?