mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Swap two statements in the dedent check loop. This makes absolutely
no difference, but avoids triggering an optimizer bug in the AIX compiler where the loop unrolling does the wrong thing...
This commit is contained in:
parent
fac431e7d5
commit
54758fa8ca
1 changed files with 1 additions and 1 deletions
|
@ -485,8 +485,8 @@ PyTokenizer_Get(tok, p_start, p_end)
|
|||
/* Dedent -- any number, must be consistent */
|
||||
while (tok->indent > 0 &&
|
||||
col < tok->indstack[tok->indent]) {
|
||||
tok->indent--;
|
||||
tok->pendin--;
|
||||
tok->indent--;
|
||||
}
|
||||
if (col != tok->indstack[tok->indent]) {
|
||||
fprintf(stderr,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue