audk/EdkCompatibilityPkg/Foundation
qwang12 1bfbd131fa ICC Cleanup:
#if __INTEL_COMPILER

//
// Disable the extra ";" warning;
// All places referencing EFI_GUID_STRING MACRO will generate this error.
//
#pragma warning ( disable : 424 )

//
// error #593: variable "Status" was set but never used
// This error may be flagged if a function only do ASSERT on return status when 
// EFI_DEBUG is not defined (EDK's ASSERT will be defined as empty statement).
// To make EdkCompatibilityPkg buildable by ICC with EFI_DEBUG undefined, disable
// this warning.
//
#pragma warning ( disable : 593 )

//
// Disable ICC's remark #869: "Parameter" was never referenced warning.
// This is legal ANSI C code so we disable the remark that is turned on with -Wall
//
#pragma warning ( disable : 869 )

//
// Disable ICC's remark #1418: external function definition with no prior declaration.
// This is legal ANSI C code so we disable the remark that is turned on with /W4
//
#pragma warning ( disable : 1418 )

//
// Disable ICC's remark #1419: external declaration in primary source file
// This is legal ANSI C code so we disable the remark that is turned on with /W4
//
#pragma warning ( disable : 1419 )

#endif

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6602 6f19259b-4bc3-4df7-8a09-765794883524
2008-11-18 09:57:59 +00:00
..
Core/Dxe/ArchProtocol Update Guid Value format. 2008-03-28 12:00:46 +00:00
Cpu Changing source filename to match name changing. 2008-09-27 05:43:22 +00:00
Efi change "\" sign to "/" sign that is comply with INF spec. 2008-09-28 01:48:06 +00:00
Framework GCC Cleanup: Remove the duplicated typedef and include the header files instead. 2008-11-18 08:09:40 +00:00
Guid Update Guid Value format. 2008-03-28 12:00:46 +00:00
Include ICC Cleanup: 2008-11-18 09:57:59 +00:00
Library ICC cleanup: Add in (CONST EFI_PEI_SERVICES **) 2008-11-18 09:56:50 +00:00
Ppi GCC Cleanup: Remove unused typedef. 2008-11-18 08:02:02 +00:00
Protocol ICC Cleanup: Remove the unnecessary ',' in the last enum. 2008-11-18 08:11:23 +00:00