]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/RShiftU64.S
sync comments.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / RShiftU64.S
index f2a49cb9c0755c5d18398143916c33feb72b4acd..ecb67e15526706600047c00116e1e9f89cc56a07 100644 (file)
 #   );
 #------------------------------------------------------------------------------
 ASM_PFX(InternalMathRShiftU64):
-    movb    12(%esp), %cl
+    movb    12(%esp), %cl               # cl <- Count
     xorl    %edx, %edx
     movl    8(%esp), %eax
-    testb   $32, %cl
+    testb   $32, %cl                    # Count >= 32?
     cmovz   %eax, %edx
     cmovz   0x4(%esp), %eax
     shrdl   %cl, %edx, %eax