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:
Guido van Rossum 1998-02-16 22:18:00 +00:00
parent fac431e7d5
commit 54758fa8ca
1 changed files with 1 additions and 1 deletions

View File

@ -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,