edk2/MdePkg/Include/Ia32/ProcessorBind.h:

* Add mask for ICC warning when a parameter is not referenced in a
  function.


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5757 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten 2008-08-29 23:04:44 +00:00
parent 64bdb454f0
commit ed300ce2a6
1 changed files with 6 additions and 1 deletions

View File

@ -28,13 +28,18 @@
#endif
#if __INTEL_COMPILER
//
// 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