Deleted Added
full compact
psxface.c (231844) psxface.c (238381)
1/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

343 AcpiDsScopeStackClear (WalkState);
344 AcpiPsCleanupScope (&WalkState->ParserState);
345 AcpiDsTerminateControlMethod (WalkState->MethodDesc, WalkState);
346 AcpiDsDeleteWalkState (WalkState);
347 goto Cleanup;
348 }
349
350 /*
1/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2012, Intel Corp.

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

343 AcpiDsScopeStackClear (WalkState);
344 AcpiPsCleanupScope (&WalkState->ParserState);
345 AcpiDsTerminateControlMethod (WalkState->MethodDesc, WalkState);
346 AcpiDsDeleteWalkState (WalkState);
347 goto Cleanup;
348 }
349
350 /*
351 * Start method evaluation with an implicit return of zero. This is done
352 * for Windows compatibility.
351 * Start method evaluation with an implicit return of zero.
352 * This is done for Windows compatibility.
353 */
354 if (AcpiGbl_EnableInterpreterSlack)
355 {
356 WalkState->ImplicitReturnObj =
357 AcpiUtCreateIntegerObject ((UINT64) 0);
358 if (!WalkState->ImplicitReturnObj)
359 {
360 Status = AE_NO_MEMORY;

--- 82 unchanged lines hidden ---
353 */
354 if (AcpiGbl_EnableInterpreterSlack)
355 {
356 WalkState->ImplicitReturnObj =
357 AcpiUtCreateIntegerObject ((UINT64) 0);
358 if (!WalkState->ImplicitReturnObj)
359 {
360 Status = AE_NO_MEMORY;

--- 82 unchanged lines hidden ---