diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-08-21 00:57:05 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-08-21 00:57:05 +0000 |
commit | 20b8fc386aef257aad81a5da5533ebd627178c6e (patch) | |
tree | 85e4a676accb43f975d6cc62d1b2dda058eff633 | |
parent | 86345de537e0670a621fa0ce81aea52d28d1f998 (diff) | |
download | edk2-platforms-20b8fc386aef257aad81a5da5533ebd627178c6e.tar.xz |
Use .fill directive to improve portability.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9166 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Universal/DebugSupportDxe/X64/AsmFuncs.S | 4 |
1 files changed, 1 insertions, 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
|