Fix for compiler hang during SWITCH statement

date	2001.06.15.17.35.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 15:45:19 +00:00
parent 7440d9ed85
commit 91e3e8dc92

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslcompiler.h - common include file
* $Revision: 1.66 $
* $Revision: 1.69 $
*
*****************************************************************************/
@ -164,8 +164,8 @@ getopt (
* Compiler versions and names
*/
#define CompilerVersion "X2021"
#define CompilerCreatorRevision 0x02002021 /* Acpi 2.0, Version # */
#define CompilerVersion "X2024"
#define CompilerCreatorRevision 0x02002024 /* Acpi 2.0, Version # */
#define CompilerId "Intel ACPI Component Architecture ASL Compiler"
#define CompilerCopyright "Copyright (C) 2000, 2001 Intel Corporation"
@ -530,6 +530,9 @@ TrLinkPeerNodes (
UINT32 NumPeers,
...);
void
TrReleaseNode (
ASL_PARSE_NODE *Node);
/* Analyze */
@ -667,6 +670,15 @@ LsDisplayNamespace (void);
/* Utils */
void
UtBeginEvent (
UINT32 Event,
char *Name);
void
UtEndEvent (
UINT32 Event);
void *
UtLocalCalloc (
UINT32 Size);