]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/SwapBytes64.S
remove unnecessary comments introduced by tools from MdePkg. The regular express...
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / SwapBytes64.S
index 01af949afa50d8eef379ae1d90dca6367adca04f..c15ca444f0fc87fa97b816540ebd71001657ab49 100644 (file)
 #------------------------------------------------------------------------------
 
 
-.global _InternalMathSwapBytes64
-_InternalMathSwapBytes64:
-
+#------------------------------------------------------------------------------
+# UINT64
+# EFIAPI
+# InternalMathSwapBytes64 (
+#   IN      UINT64                    Operand
+#   );
+#------------------------------------------------------------------------------
+.globl ASM_PFX(InternalMathSwapBytes64)
+ASM_PFX(InternalMathSwapBytes64):
     movl    8(%esp), %eax
     movl    4(%esp), %edx
     bswapl  %eax
     bswapl  %edx
     ret
-
-