Cleanup, finished function headers

date	2000.12.07.19.46.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:12:19 +00:00
parent 4fa19d8d4d
commit f5b5925b0e
2 changed files with 4 additions and 6 deletions

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: asltree - parse tree management
* $Revision: 1.17 $
* $Revision: 1.18 $
*
*****************************************************************************/
@ -408,7 +408,6 @@ TrCreateNode (
Node->LineNumber, Node, NumChildren, UtGetOpName(ParseOpcode));
RootNode = Node;
/* Some extra debug output based on the parse opcode */
switch (ParseOpcode)
@ -531,7 +530,6 @@ TrLinkChildren (
Node, NumChildren, UtGetOpName(Node->ParseOpcode));
RootNode = Node;
switch (Node->ParseOpcode)
{
case DEFINITIONBLOCK:

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslutils -- compiler utilities
* $Revision: 1.16 $
* $Revision: 1.17 $
*
*****************************************************************************/
@ -320,8 +320,8 @@ UtDisplaySummary (
Gbl_ExceptionCount[ASL_ERROR],
Gbl_ExceptionCount[ASL_WARNING]);
printf ("ASL Input: %d lines, %d bytes, %d keywords\n",
Gbl_CurrentLineNumber, Gbl_InputByteCount, TotalKeywords);
printf ("ASL Input: %s - %d lines, %d bytes, %d keywords\n",
Gbl_InputFilename, Gbl_CurrentLineNumber, Gbl_InputByteCount, TotalKeywords);
if ((Gbl_ExceptionCount[ASL_ERROR] == 0) || (Gbl_IgnoreErrors))
{