py/vm: Consistently indent #if guards to match the code they surround.

Signed-off-by: Damien George <damien@micropython.org>
pull/8901/head
Damien George 2022-07-12 22:46:35 +10:00
rodzic 893a5c8341
commit b878fc042f
1 zmienionych plików z 12 dodań i 13 usunięć

Wyświetl plik

@ -1296,9 +1296,8 @@ yield:
SET_TOP(mp_binary_op(ip[-1] - MP_BC_BINARY_OP_MULTI, lhs, rhs)); SET_TOP(mp_binary_op(ip[-1] - MP_BC_BINARY_OP_MULTI, lhs, rhs));
DISPATCH(); DISPATCH();
} else } else
#endif #endif // MICROPY_OPT_COMPUTED_GOTO
{ {
mp_obj_t obj = mp_obj_new_exception_msg(&mp_type_NotImplementedError, MP_ERROR_TEXT("opcode")); mp_obj_t obj = mp_obj_new_exception_msg(&mp_type_NotImplementedError, MP_ERROR_TEXT("opcode"));
nlr_pop(); nlr_pop();
code_state->state[0] = obj; code_state->state[0] = obj;