C89 compliance: Microsoft compilers want variable declarations at the top
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 39d7327..6cc9f6d 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1417,8 +1417,7 @@
 {
 	mod_ty mod;
 	perrdetail err;
-	int iflags;
-	iflags = PARSER_FLAGS(flags);
+	int iflags = PARSER_FLAGS(flags);
 
 	node *n = PyParser_ParseStringFlagsFilenameEx(s, filename,
 					&_PyParser_Grammar, start, &err,
@@ -1444,9 +1443,8 @@
 {
 	mod_ty mod;
 	perrdetail err;
-	int iflags;
+	int iflags = PARSER_FLAGS(flags);
 
-	iflags = PARSER_FLAGS(flags);
 	node *n = PyParser_ParseFileFlagsEx(fp, filename, &_PyParser_Grammar,
 				start, ps1, ps2, &err, &iflags);
 	if (n) {