Generation for Win64

date	2001.12.13.17.23.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:11:28 +00:00
parent 6981b06fc3
commit 191ea7a626

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: asltransform - Parse tree transforms
* $Revision: 1.5 $
* $Revision: 1.6 $
*
*****************************************************************************/
@ -489,7 +489,7 @@ TrDoSwitch (
* Case->Child->Peer is the beginning of the case block
*/
NewNode = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValuePath);
ACPI_TO_INTEGER (PredicateValuePath));
Predicate = Case->Child;
Predicate->Peer = NewNode;
@ -584,7 +584,7 @@ TrDoSwitch (
NewNode->Parent = Gbl_FirstLevelInsertionNode->Parent;
NewNode2 = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValueName);
ACPI_TO_INTEGER (PredicateValueName));
NewNode->Child = NewNode2;
NewNode2->Peer = TrCreateValuedLeafNode (INTEGER, 0);
@ -607,7 +607,7 @@ TrDoSwitch (
Predicate->Child = NULL;
NewNode = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValuePath);
ACPI_TO_INTEGER (PredicateValuePath));
NewNode->Parent = StartNode;
Predicate->Peer = NewNode;
}