Remove volatile local variable sync to MdePkg BaseUefiDecompressLib and fix ICC build error.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8148 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2009-04-22 07:29:13 +00:00
parent e97e2b7738
commit 80267d51f8
1 changed files with 4 additions and 4 deletions

View File

@ -117,7 +117,7 @@ MakeTable (
UINT16 Start[18];
UINT16 *Pointer;
UINT16 Index3;
volatile UINT16 Index;
UINT16 Index;
UINT16 Len;
UINT16 Char;
UINT16 JuBits;
@ -295,7 +295,7 @@ ReadPTLen (
{
UINT16 Number;
UINT16 CharC;
volatile UINT16 Index;
UINT16 Index;
UINT32 Mask;
//
@ -378,7 +378,7 @@ ReadCLen (
{
UINT16 Number;
UINT16 CharC;
volatile UINT16 Index;
UINT16 Index;
UINT32 Mask;
Number = (UINT16) GetBits (Sd, CBIT);
@ -632,7 +632,7 @@ UefiTianoDecompress (
IN UINT32 Version
)
{
volatile UINT32 Index;
UINT32 Index;
UINT32 CompSize;
UINT32 OrigSize;
SCRATCH_DATA *Sd;