]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/Ia32/LRotU64.c
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / LRotU64.c
index 87d370c6f43e5b2565ccab657fd7f156d5e6e9bd..496b9de0bb11f5756b05861dff7676a8eb04881f 100644 (file)
@@ -6,9 +6,6 @@
 \r
 **/\r
 \r
-\r
-\r
-\r
 /**\r
   Rotates a 64-bit integer left between 0 and 63 bits, filling\r
   the low bits with the high bits that were rotated.\r
@@ -26,8 +23,8 @@
 UINT64\r
 EFIAPI\r
 InternalMathLRotU64 (\r
-  IN      UINT64                    Operand,\r
-  IN      UINTN                     Count\r
+  IN      UINT64  Operand,\r
+  IN      UINTN   Count\r
   )\r
 {\r
   _asm {\r
@@ -43,7 +40,6 @@ InternalMathLRotU64 (
     mov     ecx, eax\r
     mov     eax, edx\r
     mov     edx, ecx\r
-L0:\r
+    L0 :\r
   }\r
 }\r
-\r