]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/LShiftU64.c
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / LShiftU64.c
index f684e1f29a03f2955456a00ffd59c45513a9aec1..c8ee0df7e8b3811eac97a3cfd16e71eacfd76070 100644 (file)
@@ -1,22 +1,11 @@
 /** @file\r
   64-bit left shift function for IA-32.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
-  All rights reserved. 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
-  http://opensource.org/licenses/bsd-license.php\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
-//\r
-// Include common header file for this module.\r
-//\r
-\r
-\r
 /**\r
   Shifts a 64-bit integer left between 0 and 63 bits. The low bits\r
   are filled with zeros. The shifted value is returned.\r
@@ -33,8 +22,8 @@
 UINT64\r
 EFIAPI\r
 InternalMathLShiftU64 (\r
-  IN      UINT64                    Operand,\r
-  IN      UINTN                     Count\r
+  IN      UINT64  Operand,\r
+  IN      UINTN   Count\r
   )\r
 {\r
   _asm {\r
@@ -42,10 +31,11 @@ InternalMathLShiftU64 (
     xor     eax, eax\r
     mov     edx, dword ptr [Operand + 0]\r
     test    cl, 32                      // Count >= 32?\r
-    cmovz   eax, edx\r
-    cmovz   edx, dword ptr [Operand + 4]\r
+    jnz     L0\r
+    mov     eax, edx\r
+    mov     edx, dword ptr [Operand + 4]\r
+L0:\r
     shld    edx, eax, cl\r
     shl     eax, cl\r
   }\r
 }\r
-\r