diff options
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/Ipf/ProcessorBind.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MdePkg/Include/Ipf/ProcessorBind.h b/MdePkg/Include/Ipf/ProcessorBind.h index c184125da1..a383868fc6 100644 --- a/MdePkg/Include/Ipf/ProcessorBind.h +++ b/MdePkg/Include/Ipf/ProcessorBind.h @@ -36,6 +36,20 @@ // IA-32 version of efibind.h
//
+#if __INTEL_COMPILER
+//
+// Disable ICC's error #1418: external function definition with no prior declaration
+//
+#pragma warning ( disable : 1418 )
+
+
+//
+// Disable ICC's error #1419: external declaration in primary source file
+//
+#pragma warning ( disable : 1419 )
+
+#endif
+
//
// Disabling bitfield type checking warnings.
//
|