Merge pull request #1142 from notro/ctrl_c_raise

Revert "py/vm: Improve performance of opcode dispatch when using switch stmt."
This commit is contained in:
Dan Halbert 2018-08-25 08:26:06 -04:00 committed by GitHub
commit 5c3fcc7490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ mp_vm_return_kind_t mp_execute_bytecode(mp_code_state_t *code_state, volatile mp
#define ENTRY(op) entry_##op
#define ENTRY_DEFAULT entry_default
#else
#define DISPATCH() goto dispatch_loop
#define DISPATCH() break
#define DISPATCH_WITH_PEND_EXC_CHECK() goto pending_exception_check
#define ENTRY(op) case op
#define ENTRY_DEFAULT default