mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 18:04:08 +03:00
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:
parent
c8ddb4458e
commit
b0ad73832d
@ -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;
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user