mirror of https://github.com/acidanthera/audk.git
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:
parent
6c25c60e6c
commit
ecb8241b39
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue