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 * 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 * Case->Child->Peer is the beginning of the case block
*/ */
NewNode = TrCreateValuedLeafNode (NAMESTRING, NewNode = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValuePath); ACPI_TO_INTEGER (PredicateValuePath));
Predicate = Case->Child; Predicate = Case->Child;
Predicate->Peer = NewNode; Predicate->Peer = NewNode;
@ -584,7 +584,7 @@ TrDoSwitch (
NewNode->Parent = Gbl_FirstLevelInsertionNode->Parent; NewNode->Parent = Gbl_FirstLevelInsertionNode->Parent;
NewNode2 = TrCreateValuedLeafNode (NAMESTRING, NewNode2 = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValueName); ACPI_TO_INTEGER (PredicateValueName));
NewNode->Child = NewNode2; NewNode->Child = NewNode2;
NewNode2->Peer = TrCreateValuedLeafNode (INTEGER, 0); NewNode2->Peer = TrCreateValuedLeafNode (INTEGER, 0);
@ -607,7 +607,7 @@ TrDoSwitch (
Predicate->Child = NULL; Predicate->Child = NULL;
NewNode = TrCreateValuedLeafNode (NAMESTRING, NewNode = TrCreateValuedLeafNode (NAMESTRING,
(NATIVE_INT) PredicateValuePath); ACPI_TO_INTEGER (PredicateValuePath));
NewNode->Parent = StartNode; NewNode->Parent = StartNode;
Predicate->Peer = NewNode; Predicate->Peer = NewNode;
} }