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:
jmcneill 2008-04-21 18:59:42 +00:00
parent 7c883dd79e
commit 3d052baa7f
2 changed files with 6 additions and 2 deletions

View File

@ -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))

View File

@ -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;
}