summaryrefslogtreecommitdiff
path: root/compiler/aslcompile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/aslcompile.c')
-rw-r--r--compiler/aslcompile.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/compiler/aslcompile.c b/compiler/aslcompile.c
index dfa839d26ed0..07de1fe63c9b 100644
--- a/compiler/aslcompile.c
+++ b/compiler/aslcompile.c
@@ -2,7 +2,6 @@
/******************************************************************************
*
* Module Name: aslcompile - top level compile module
- * $Revision: 1.97 $
*
*****************************************************************************/
@@ -10,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -132,6 +131,16 @@ static ACPI_STATUS
FlCheckForAscii (
ASL_FILE_INFO *FileInfo);
+void
+FlConsumeAnsiComment (
+ ASL_FILE_INFO *FileInfo,
+ ASL_FILE_STATUS *Status);
+
+void
+FlConsumeNewComment (
+ ASL_FILE_INFO *FileInfo,
+ ASL_FILE_STATUS *Status);
+
/*******************************************************************************
*
@@ -466,7 +475,7 @@ FlCheckForAscii (
/* Check for an ASCII character */
- if (!isascii (Byte))
+ if (!ACPI_IS_ASCII (Byte))
{
if (BadBytes < 10)
{
@@ -914,16 +923,6 @@ CmCleanupAndExit (
}
UtDisplaySummary (ASL_FILE_STDOUT);
-
- /*
- * Return non-zero exit code if there have been errors, unless the
- * global ignore error flag has been set
- */
- if ((Gbl_ExceptionCount[ASL_ERROR] > 0) && (!Gbl_IgnoreErrors))
- {
- exit (1);
- }
- exit (0);
}