diff options
author | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-20 01:58:40 +0000 |
---|---|---|
committer | eric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-05-20 01:58:40 +0000 |
commit | f6839dd6165a9ff0096639674dece05980c6b87c (patch) | |
tree | 075c2ccd6d6e55a270bc9c447731d3d4960f077c /EdkCompatibilityPkg/Foundation | |
parent | 391a0724f2f91ae544492c2902e1e5f387ee62b7 (diff) | |
download | edk2-platforms-f6839dd6165a9ff0096639674dece05980c6b87c.tar.xz |
fix a typo of missing a colon sign after a label symbol.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8339 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ia32/ZeroMem.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ia32/ZeroMem.S b/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ia32/ZeroMem.S index 9b20c389fd..b3c8853230 100644 --- a/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ia32/ZeroMem.S +++ b/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ia32/ZeroMem.S @@ -30,7 +30,7 @@ # IN UINTN Count # ); #------------------------------------------------------------------------------ -ASM_PFX(InternalMemZeroMem) +ASM_PFX(InternalMemZeroMem): push %edi xorl %eax,%eax movl 8(%esp),%edi |