diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-03-20 18:17:33 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-03-20 18:17:33 +0000 | 
| commit | b81dc021b3e3311e46f9e81de4f09855536e8147 (patch) | |
| tree | 3fa3a8ab860459d0b2c9768eed9142052be1ced3 /source/compiler/aslutils.c | |
| parent | 5437485bdb98c4b00f15969e013c454426e9c862 (diff) | |
Notes
Diffstat (limited to 'source/compiler/aslutils.c')
| -rw-r--r-- | source/compiler/aslutils.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/source/compiler/aslutils.c b/source/compiler/aslutils.c index 4edc8c4bb8b8..de8ad247a579 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)); | 
