Fix some incorrect indentation around the main switch (#98177)

The `}` marked with `/* End instructions */` is the end of the switch.
There is another pair of `{}` around the switch, which is vestigial
from ancient times when it was `for (;;) { switch (opcode) { ... } }`.
All `DISPATCH` macro calls should be inside that pair.
This commit is contained in:
Guido van Rossum 2022-10-11 16:45:53 -07:00 committed by GitHub
parent 5ecf961640
commit f5d71073e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1152,12 +1152,11 @@ handle_eval_breaker:
{
/* Start instructions */
#if USE_COMPUTED_GOTOS
{
#else
#if !USE_COMPUTED_GOTOS
dispatch_opcode:
switch (opcode) {
switch (opcode)
#endif
{
/* BEWARE!
It is essential that any operation that fails must goto error