From 20b8fc386aef257aad81a5da5533ebd627178c6e Mon Sep 17 00:00:00 2001 From: qhuang8 Date: Fri, 21 Aug 2009 00:57:05 +0000 Subject: [PATCH] Use .fill directive to improve portability. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9166 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S b/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S index 958c398a95..597d3dced7 100644 --- a/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S +++ b/MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S @@ -68,9 +68,7 @@ ASM_PFX(OrigVector): .long 0x66666666 # ? .p2align 4 DebugStackEnd : .ascii "DbgStkEnd >>>>>>" # 16 byte long string - must be 16 bytes to preserve alignment - .rept 0x1ffc - .long 0x00000000 - .endr + .fill 0x1ffc, 4, 0x00000000 # 32K should be enough stack # This allocation is coocked to insure # that the the buffer for the FXSTORE instruction -- 2.39.2