]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/SwapBytes64.S
1. Updated function headers in all assembly files.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / SwapBytes64.S
index 01af949afa50d8eef379ae1d90dca6367adca04f..f7633428bd180de5b3d4d68a4ce55a8c27fd7f7c 100644 (file)
 #------------------------------------------------------------------------------
 
 
+#------------------------------------------------------------------------------
+# UINT64
+# EFIAPI
+# InternalMathSwapBytes64 (
+#   IN      UINT64                    Operand
+#   );
+#------------------------------------------------------------------------------
 .global _InternalMathSwapBytes64
 _InternalMathSwapBytes64:
-
     movl    8(%esp), %eax
     movl    4(%esp), %edx
     bswapl  %eax
     bswapl  %edx
     ret
-
-