Disable the warning of bitfield

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2768 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2007-06-27 04:59:16 +00:00
parent 6c25c60e6c
commit ecb8241b39
1 changed files with 8 additions and 1 deletions

View File

@ -20,7 +20,13 @@
//
// IPF Specific Functions
//
#ifdef _MSC_VER
//
// Disabling bitfield type checking warnings.
//
#pragma warning ( disable : 4214 )
#endif
typedef struct {
UINT64 Status;
UINT64 r9;
@ -140,6 +146,7 @@ typedef struct {
UINT64 AliasBoundary:8;
UINT64 TagLsBits:8;
UINT64 TagMsBits:8;
UINT64 Reserve:8;
} PAL_CACHE_INFO_RETURN2;
/**