Auto-truncate large integers when in 32-bit mode

date	2005.05.06.23.48.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:06:32 +00:00
parent c8ddb4458e
commit b0ad73832d

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: dsobject - Dispatcher object management routines
* $Revision: 1.123 $
* $Revision: 1.124 $
*
*****************************************************************************/
@ -653,6 +653,9 @@ AcpiDsInitObjectFromOp (
case AML_TYPE_LITERAL:
ObjDesc->Integer.Value = Op->Common.Value.Integer;
#ifndef ACPI_NO_METHOD_EXECUTION
AcpiExTruncateFor32bitTable (ObjDesc);
#endif
break;