]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmulatorPkg/Unix/Host/X64/SwitchStack.S
EmulatorPkg: Remove all trailing whitespace
[mirror_edk2.git] / EmulatorPkg / Unix / Host / X64 / SwitchStack.S
index 8a57b781b54045bb640487bdde6ca29bf4659e26..e82b352b6a66067ed697bf5a6047d64500b86a33 100644 (file)
@@ -23,7 +23,7 @@
 #\r
 #   (rdi) EntryPoint    - Entry point with new stack.\r
 #   (rsi) Context1      - Parameter1 for entry point. (rcx)\r
-#   (rdx) Context2      - Parameter2 for entry point. (rdx) \r
+#   (rdx) Context2      - Parameter2 for entry point. (rdx)\r
 #   (rcx) NewStack      - The pointer to new stack.\r
 #\r
 # Returns:\r
@@ -37,11 +37,11 @@ ASM_PFX(PeiSwitchStacks):
     movq    %rsp, %rbp\r
 \r
     movq    %rcx, %rsp    // update stack pointer\r
-    \r
+\r
     movq    %rdi, %rax    // entry point to %rax\r
     movq    %rsi, %rcx    // Adjust Context1\r
                           // Context2 already in the rigth spot\r
-    \r
+\r
     #\r
     # Reserve space for register parameters (rcx, rdx, r8 & r9) on the stack,\r
     # in case the callee wishes to spill them.\r
@@ -49,5 +49,5 @@ ASM_PFX(PeiSwitchStacks):
     subq    $32, %rsp  // 32-byte shadow space plus alignment pad\r
     call    *%rax\r
 \r
-  \r
+\r
 \r