]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add the missing default definition of EFIAPI in Ia32/ProcessorBind.h.
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 13 Jun 2011 03:58:18 +0000 (03:58 +0000)
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 13 Jun 2011 03:58:18 +0000 (03:58 +0000)
Signed-off-by: lgao4
Reviewed-by: rsun3
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11813 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Ia32/ProcessorBind.h

index f1a84d7bb663b80b920b9a0ee4235bd4c70e5a54..b38f39c7227c0e7cb4630df115f69c5afb182248 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Processor or Compiler specific defines and types for IA-32 architecture.\r
 \r
 /** @file\r
   Processor or Compiler specific defines and types for IA-32 architecture.\r
 \r
-Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials are licensed and made available under \r
 the terms and conditions of the BSD License that accompanies this distribution.  \r
 The full text of the license may be found at\r
 This program and the accompanying materials are licensed and made available under \r
 the terms and conditions of the BSD License that accompanies this distribution.  \r
 The full text of the license may be found at\r
@@ -245,13 +245,17 @@ typedef INT32   INTN;
   /// Microsoft* compiler specific method for EFIAPI calling convention.\r
   /// \r
   #define EFIAPI __cdecl  \r
   /// Microsoft* compiler specific method for EFIAPI calling convention.\r
   /// \r
   #define EFIAPI __cdecl  \r
+#elif defined(__GNUC__)\r
+  ///\r
+  /// GCC specific method for EFIAPI calling convention.\r
+  /// \r
+  #define EFIAPI __attribute__((cdecl))  \r
 #else\r
 #else\r
-  #if defined(__GNUC__)\r
-    ///\r
-    /// GCC specific method for EFIAPI calling convention.\r
-    /// \r
-    #define EFIAPI __attribute__((cdecl))  \r
-  #endif  \r
+  ///\r
+  /// The default for a non Microsoft* or GCC compiler is to assume the EFI ABI\r
+  /// is the standard. \r
+  ///\r
+  #define EFIAPI\r
 #endif\r
 \r
 #if defined(__GNUC__)\r
 #endif\r
 \r
 #if defined(__GNUC__)\r