]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OvmfPkg/Sec/X64/SecEntry.nasm
OvmfPkg/Sec: Fix 64bit SEC build failure
[mirror_edk2.git] / OvmfPkg / Sec / X64 / SecEntry.nasm
index 7c55032ac9625e50d0951422edaf3934fb5981a0..d76adcffd82ea2676c6fbef79034a24ff976f0d6 100644 (file)
@@ -45,10 +45,8 @@ ASM_PFX(_ModuleEntryPoint):
     ; Fill the temporary RAM with the initial stack value.\r
     ; The loop below will seed the heap as well, but that's harmless.\r
     ;\r
-    mov     rax, (FixedPcdGet32 (                        \\r
-                    PcdInitValueInTempStack              \\r
-                    ) << 32) |                           \\r
-                 FixedPcdGet32 (PcdInitValueInTempStack)      ; qword to store\r
+    mov     rax, (FixedPcdGet32 (PcdInitValueInTempStack) << 32) | FixedPcdGet32 (PcdInitValueInTempStack)\r
+                                                              ; qword to store\r
     mov     rdi, FixedPcdGet32 (PcdOvmfSecPeiTempRamBase)     ; base address,\r
                                                               ;   relative to\r
                                                               ;   ES\r