Patch from Intel that addresses an issue with implicit returns when the
interpreter is in slack mode: http://www.moblin.org/pipermail/devel/2008-April/000017.html Fixes PR#38469 by Juergen Hannken-Illjes
This commit is contained in:
parent
7c883dd79e
commit
3d052baa7f
|
@ -1,7 +1,7 @@
|
|||
/******************************************************************************
|
||||
*
|
||||
* Module Name: dsmethod - Parser/Interpreter interface - control method parsing
|
||||
* $Revision: 1.6 $
|
||||
* $Revision: 1.7 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
|
@ -185,7 +185,9 @@ AcpiDsMethodError (
|
|||
AcpiExEnterInterpreter ();
|
||||
}
|
||||
|
||||
#if 0
|
||||
AcpiDsClearImplicitReturn (WalkState);
|
||||
#endif
|
||||
|
||||
#ifdef ACPI_DISASSEMBLER
|
||||
if (ACPI_FAILURE (Status))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*******************************************************************************
|
||||
*
|
||||
* Module Name: dsmthdat - control method arguments and local variables
|
||||
* $Revision: 1.4 $
|
||||
* $Revision: 1.5 $
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
|
@ -263,7 +263,9 @@ AcpiDsMethodDataDeleteAll (
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
AcpiDsClearImplicitReturn (WalkState);
|
||||
#endif
|
||||
|
||||
return_VOID;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue