]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/ARShiftU64.asm
MdePkg/BaseLib: Support IA32 processors without CMOVx
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / ARShiftU64.asm
index 9d53969bb670adc5e338b8eb802b3d5cd37606f7..10f04c3875166780aa56122404d220b4bed7d6b2 100644 (file)
@@ -1,6 +1,6 @@
 ;------------------------------------------------------------------------------\r
 ;\r
-; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>\r
+; Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
 ; This program and the accompanying materials\r
 ; are licensed and made available under the terms and conditions of the BSD License\r
 ; which accompanies this distribution.  The full text of the license may be found at\r
@@ -36,8 +36,10 @@ InternalMathARShiftU64  PROC
     mov     eax, [esp + 8]\r
     cdq\r
     test    cl, 32\r
-    cmovz   edx, eax\r
-    cmovz   eax, [esp + 4]\r
+    jnz     @F\r
+    mov     edx, eax\r
+    mov     eax, [esp + 4]\r
+@@:    \r
     shrd    eax, edx, cl\r
     sar     edx, cl\r
     ret\r