diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-29 23:04:44 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-29 23:04:44 +0000 |
commit | ed300ce2a68ba42b7e140af9e7e71c706518c9f1 (patch) | |
tree | 1081d8400889642c71299082f58e515d5acd5e66 /MdePkg | |
parent | 64bdb454f012ba2dd9c46e7ed81208b89d238a95 (diff) | |
download | edk2-ed300ce2a68ba42b7e140af9e7e71c706518c9f1.zip edk2-ed300ce2a68ba42b7e140af9e7e71c706518c9f1.tar.gz edk2-ed300ce2a68ba42b7e140af9e7e71c706518c9f1.tar.bz2 |
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
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Ia32/ProcessorBind.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MdePkg/Include/Ia32/ProcessorBind.h b/MdePkg/Include/Ia32/ProcessorBind.h index c609bb9..7c40e09 100644 --- a/MdePkg/Include/Ia32/ProcessorBind.h +++ b/MdePkg/Include/Ia32/ProcessorBind.h @@ -29,12 +29,17 @@ #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
|