mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 09:54:42 +03:00
Added new message type, "Optimizations"
date 2002.08.13.22.13.00; author rmoore1; state Exp;
This commit is contained in:
parent
446473ddf5
commit
f8abafb1ee
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: asltypes.h - compiler data types and struct definitions
|
||||
* $Revision: 1.47 $
|
||||
* $Revision: 1.48 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -295,7 +295,8 @@ typedef struct
|
||||
#define ASL_ERROR 0
|
||||
#define ASL_WARNING 1
|
||||
#define ASL_REMARK 2
|
||||
#define ASL_NUM_REPORT_LEVELS 3
|
||||
#define ASL_OPTIMIZATION 3
|
||||
#define ASL_NUM_REPORT_LEVELS 4
|
||||
|
||||
|
||||
typedef enum
|
||||
@ -375,7 +376,8 @@ typedef enum
|
||||
ASL_MSG_MISSING_STARTDEPENDENT,
|
||||
ASL_MSG_DEPENDENT_NESTING,
|
||||
ASL_MSG_NAME_OPTIMIZATION,
|
||||
ASL_MSG_SINGLE_NAME_OPTIMIZATION
|
||||
ASL_MSG_SINGLE_NAME_OPTIMIZATION,
|
||||
ASL_MSG_INTEGER_OPTIMIZATION
|
||||
|
||||
} ASL_MESSAGE_IDS;
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: aslutils -- compiler utilities
|
||||
* $Revision: 1.50 $
|
||||
* $Revision: 1.51 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -488,7 +488,7 @@ UtDisplaySummary (
|
||||
/* Input/Output summary */
|
||||
|
||||
FlPrintFile (FileId,
|
||||
"ASL Input: %s - %d lines, %d bytes, %d keywords\n",
|
||||
"ASL Input: %s - %d lines, %d bytes, %d keywords\n",
|
||||
Gbl_Files[ASL_FILE_INPUT].Filename, Gbl_CurrentLineNumber,
|
||||
Gbl_InputByteCount, TotalKeywords);
|
||||
|
||||
@ -505,10 +505,11 @@ UtDisplaySummary (
|
||||
/* Error summary */
|
||||
|
||||
FlPrintFile (FileId,
|
||||
"Compilation complete. %d Errors, %d Warnings, %d Remarks\n",
|
||||
"Compilation complete. %d Errors, %d Warnings, %d Remarks, %d Optimizations\n",
|
||||
Gbl_ExceptionCount[ASL_ERROR],
|
||||
Gbl_ExceptionCount[ASL_WARNING],
|
||||
Gbl_ExceptionCount[ASL_REMARK]);
|
||||
Gbl_ExceptionCount[ASL_REMARK],
|
||||
Gbl_ExceptionCount[ASL_OPTIMIZATION]);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user