Elsif support (split into an ELSE then IF)

date	2001.06.21.21.31.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 15:45:21 +00:00
parent 91e3e8dc92
commit a662fb825d

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: aslcompiler.h - common include file
* $Revision: 1.69 $
* $Revision: 1.71 $
*
*****************************************************************************/
@ -454,6 +454,34 @@ CgWriteNode (
ASL_PARSE_NODE *Node);
/*
* asltransform - parse tree transformations
*/
ACPI_STATUS
TrAmlTransformWalk (
ASL_PARSE_NODE *Node,
UINT32 Level,
void *Context);
void
TrTransformSubtree (
ASL_PARSE_NODE *Node);
void
TrDoSwitch (
ASL_PARSE_NODE *Node);
void
TrDoDefinitionBlock (
ASL_PARSE_NODE *Node);
void
TrDoElseif (
ASL_PARSE_NODE *Node);
/*
* asltree - parse tree support
*/