aboutsummaryrefslogtreecommitdiff
path: root/py/vm.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-05-27 11:55:40 +1000
committerDamien George <damien.p.george@gmail.com>2019-05-27 11:58:32 +1000
commitab265537593ed10d075c2b8ea8b5e0b193c13094 (patch)
treebf2a4b2a0b4a3fe9d081507ded611ef15f50d294 /py/vm.c
parent1470184bddcdb7f325a42a25ad76b8cd3714606f (diff)
py/vm: Remove obsolete comments about matching of exception opcodes.
These are incorrect since 5a2599d96299ad37cda954f1de345159f9acf11c
Diffstat (limited to 'py/vm.c')
-rw-r--r--py/vm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/py/vm.c b/py/vm.c
index 901a23f22..260a7f38b 100644
--- a/py/vm.c
+++ b/py/vm.c
@@ -3,7 +3,7 @@
*
* The MIT License (MIT)
*
- * Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2013-2019 Damien P. George
* Copyright (c) 2014-2015 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -675,7 +675,6 @@ unwind_jump:;
DISPATCH_WITH_PEND_EXC_CHECK();
}
- // matched against: POP_BLOCK or POP_EXCEPT (anything else?)
ENTRY(MP_BC_SETUP_EXCEPT):
ENTRY(MP_BC_SETUP_FINALLY): {
MARK_EXC_IP_SELECTIVE();
@@ -758,7 +757,6 @@ unwind_jump:;
DISPATCH();
}
- // matched against: SETUP_EXCEPT, SETUP_FINALLY, SETUP_WITH
ENTRY(MP_BC_POP_EXCEPT_JUMP): {
assert(exc_sp >= exc_stack);
POP_EXC_BLOCK();