aboutsummaryrefslogtreecommitdiff
path: root/compiler/aslcompile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/aslcompile.c')
-rw-r--r--compiler/aslcompile.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c
index 07de1fe63c9b..d9836ca908e4 100644
--- a/compiler/aslcompile.c
+++ b/compiler/aslcompile.c
@@ -895,13 +895,6 @@ CmCleanupAndExit (
10) / Gbl_NsLookupCount);
}
- /* Close all open files */
-
- for (i = 2; i < ASL_MAX_FILE_TYPE; i++)
- {
- FlCloseFile (i);
- }
-
/*
* TBD: SourceOutput should be .TMP, then rename if we want to keep it?
*/
@@ -923,6 +916,13 @@ CmCleanupAndExit (
}
UtDisplaySummary (ASL_FILE_STDOUT);
+
+ /* Close all open files */
+
+ for (i = 2; i < ASL_MAX_FILE_TYPE; i++)
+ {
+ FlCloseFile (i);
+ }
}