From f65c4f80d1c60e597f67836e51986ebf3cd669f7 Mon Sep 17 00:00:00 2001 From: jkim Date: Tue, 20 Mar 2012 18:17:33 +0000 Subject: Import ACPICA 20120320. --- source/compiler/aslutils.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/compiler/aslutils.c') diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c index 4edc8c4..de8ad24 100644 --- a/source/compiler/aslutils.c +++ b/source/compiler/aslutils.c @@ -68,6 +68,7 @@ static const char *AslFileTypeNames [ASL_NUM_FILES] = "Table Input: ", "Binary Output:", "Source Output:", + "Preprocessor: ", "Listing File: ", "Hex Dump: ", "Namespace: ", @@ -536,6 +537,13 @@ UtDisplaySummary ( continue; } + /* .I is a temp file unless specifically requested */ + + if ((i == ASL_FILE_PREPROCESSOR) && (!Gbl_PreprocessorOutputFlag)) + { + continue; + } + FlPrintFile (FileId, "%14s %s - %u bytes\n", AslFileTypeNames [i], Gbl_Files[i].Filename, FlGetFileSize (i)); -- cgit v1.1