Skip to content
Snippets Groups Projects
Commit ab265537 authored by Damien George's avatar Damien George
Browse files

py/vm: Remove obsolete comments about matching of exception opcodes.

These are incorrect since 5a2599d9
parent 1470184b
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* The MIT License (MIT) * The MIT License (MIT)
* *
* Copyright (c) 2013, 2014 Damien P. George * Copyright (c) 2013-2019 Damien P. George
* Copyright (c) 2014-2015 Paul Sokolovsky * Copyright (c) 2014-2015 Paul Sokolovsky
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
...@@ -675,7 +675,6 @@ unwind_jump:; ...@@ -675,7 +675,6 @@ unwind_jump:;
DISPATCH_WITH_PEND_EXC_CHECK(); DISPATCH_WITH_PEND_EXC_CHECK();
} }
// matched against: POP_BLOCK or POP_EXCEPT (anything else?)
ENTRY(MP_BC_SETUP_EXCEPT): ENTRY(MP_BC_SETUP_EXCEPT):
ENTRY(MP_BC_SETUP_FINALLY): { ENTRY(MP_BC_SETUP_FINALLY): {
MARK_EXC_IP_SELECTIVE(); MARK_EXC_IP_SELECTIVE();
...@@ -758,7 +757,6 @@ unwind_jump:; ...@@ -758,7 +757,6 @@ unwind_jump:;
DISPATCH(); DISPATCH();
} }
// matched against: SETUP_EXCEPT, SETUP_FINALLY, SETUP_WITH
ENTRY(MP_BC_POP_EXCEPT_JUMP): { ENTRY(MP_BC_POP_EXCEPT_JUMP): {
assert(exc_sp >= exc_stack); assert(exc_sp >= exc_stack);
POP_EXC_BLOCK(); POP_EXC_BLOCK();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment