Deleted Added
full compact
asltree.c (118611) asltree.c (123315)
1
2/******************************************************************************
3 *
4 * Module Name: asltree - parse tree management
1
2/******************************************************************************
3 *
4 * Module Name: asltree - parse tree management
5 * $Revision: 53 $
5 * $Revision: 54 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.

--- 469 unchanged lines hidden (view full) ---

483 ACPI_PARSE_OBJECT *Op;
484
485
486 Op = TrAllocateNode (ParseOpcode);
487
488 DbgPrint (ASL_PARSE_OUTPUT,
489 "\nCreateValuedLeafNode Line %d NewNode %p Op %s Value %8.8X%8.8X ",
490 Op->Asl.LineNumber, Op, UtGetOpName(ParseOpcode),
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.

--- 469 unchanged lines hidden (view full) ---

483 ACPI_PARSE_OBJECT *Op;
484
485
486 Op = TrAllocateNode (ParseOpcode);
487
488 DbgPrint (ASL_PARSE_OUTPUT,
489 "\nCreateValuedLeafNode Line %d NewNode %p Op %s Value %8.8X%8.8X ",
490 Op->Asl.LineNumber, Op, UtGetOpName(ParseOpcode),
491 ACPI_HIDWORD (Value), ACPI_LODWORD (Value));
491 ACPI_FORMAT_UINT64 (Value));
492 Op->Asl.Value.Integer = Value;
493
494 switch (ParseOpcode)
495 {
496 case PARSEOP_STRING_LITERAL:
497 DbgPrint (ASL_PARSE_OUTPUT, "STRING->%s", Value);
498 break;
499

--- 683 unchanged lines hidden ---
492 Op->Asl.Value.Integer = Value;
493
494 switch (ParseOpcode)
495 {
496 case PARSEOP_STRING_LITERAL:
497 DbgPrint (ASL_PARSE_OUTPUT, "STRING->%s", Value);
498 break;
499

--- 683 unchanged lines hidden ---