diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-30 05:42:49 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-30 05:42:49 +0000 |
commit | 49c80af423d4eecd932aa9831fbba3f74ea4a424 (patch) | |
tree | 5d94673809f70748baaecc570c7b8f592a9dcac0 /MdePkg/Library/BaseMemoryLibMmx/Ia32 | |
parent | 9d6d8b24f36f782690a918ebabf8da88d54a050e (diff) | |
download | edk2-platforms-49c80af423d4eecd932aa9831fbba3f74ea4a424.tar.xz |
1. Fixed incorrect ASSERT conditions in wrapper functions.
2. Removed unnecessary SUB instructions in CompareMem.asm
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@318 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseMemoryLibMmx/Ia32')
-rw-r--r-- | MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm b/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm index 4e35d1c858..3cf6fe7f73 100644 --- a/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm +++ b/MdePkg/Library/BaseMemoryLibMmx/Ia32/CompareMem.asm @@ -39,7 +39,6 @@ InternalMemCompareMem PROC USES esi edi movzx eax, byte ptr [esi - 1]
movzx edx, byte ptr [edi - 1]
sub eax, edx
- sub eax, edx
ret
InternalMemCompareMem ENDP
|