summaryrefslogtreecommitdiff
path: root/py/vmentrytable.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-05-05 22:15:42 +0100
committerDamien George <damien.p.george@gmail.com>2015-05-05 22:15:42 +0100
commit8872abcbc4107c8d3eaf148a03813e607aa30bfb (patch)
tree1ada91c0578c1aac3770bf145a4611a16a58b94d /py/vmentrytable.h
parent37c6555b4419eb6027a345ee0c3e759d50da771f (diff)
py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.
Ellipsis constant is rarely used so no point having an extra bytecode for it.
Diffstat (limited to 'py/vmentrytable.h')
-rw-r--r--py/vmentrytable.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/vmentrytable.h b/py/vmentrytable.h
index d2a6abee3..2e3e3abbb 100644
--- a/py/vmentrytable.h
+++ b/py/vmentrytable.h
@@ -34,7 +34,6 @@ static void* entry_table[256] = {
[MP_BC_LOAD_CONST_FALSE] = &&entry_MP_BC_LOAD_CONST_FALSE,
[MP_BC_LOAD_CONST_NONE] = &&entry_MP_BC_LOAD_CONST_NONE,
[MP_BC_LOAD_CONST_TRUE] = &&entry_MP_BC_LOAD_CONST_TRUE,
- [MP_BC_LOAD_CONST_ELLIPSIS] = &&entry_MP_BC_LOAD_CONST_ELLIPSIS,
[MP_BC_LOAD_CONST_SMALL_INT] = &&entry_MP_BC_LOAD_CONST_SMALL_INT,
[MP_BC_LOAD_CONST_BYTES] = &&entry_MP_BC_LOAD_CONST_BYTES,
[MP_BC_LOAD_CONST_STRING] = &&entry_MP_BC_LOAD_CONST_STRING,