Deleted Added
full compact
aslutils.c (193529) aslutils.c (195626)
1
2/******************************************************************************
3 *
4 * Module Name: aslutils -- compiler utilities
5 *
6 *****************************************************************************/
7
8/******************************************************************************

--- 505 unchanged lines hidden (view full) ---

514UtDisplaySummary (
515 UINT32 FileId)
516{
517
518 if (FileId != ASL_FILE_STDOUT)
519 {
520 /* Compiler name and version number */
521
1
2/******************************************************************************
3 *
4 * Module Name: aslutils -- compiler utilities
5 *
6 *****************************************************************************/
7
8/******************************************************************************

--- 505 unchanged lines hidden (view full) ---

514UtDisplaySummary (
515 UINT32 FileId)
516{
517
518 if (FileId != ASL_FILE_STDOUT)
519 {
520 /* Compiler name and version number */
521
522 FlPrintFile (FileId, "%s version %X [%s]\n",
523 CompilerId, (UINT32) ACPI_CA_VERSION, __DATE__);
522 FlPrintFile (FileId, "%s version %X\n",
523 CompilerId, (UINT32) ACPI_CA_VERSION);
524 }
525
526 /* Input/Output summary */
527
528 FlPrintFile (FileId,
529 "ASL Input: %s - %d lines, %d bytes, %d keywords\n",
530 Gbl_Files[ASL_FILE_INPUT].Filename, Gbl_CurrentLineNumber,
531 Gbl_InputByteCount, TotalKeywords);

--- 529 unchanged lines hidden ---
524 }
525
526 /* Input/Output summary */
527
528 FlPrintFile (FileId,
529 "ASL Input: %s - %d lines, %d bytes, %d keywords\n",
530 Gbl_Files[ASL_FILE_INPUT].Filename, Gbl_CurrentLineNumber,
531 Gbl_InputByteCount, TotalKeywords);

--- 529 unchanged lines hidden ---