diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-14 15:37:59 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-06-14 15:37:59 +0000 |
commit | 508daae71b4c754321cb28e1fe7671a2ec1374f7 (patch) | |
tree | 9cbc62b63aedbf6d84e096e0415f9129697368c3 /MdePkg/Library/BaseLib | |
parent | a68d14777e3119a0709b01a0c7cad461a8403db2 (diff) | |
download | edk2-platforms-508daae71b4c754321cb28e1fe7671a2ec1374f7.tar.xz |
Fix an assembler warning.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@514 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/LongJump.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/LongJump.s b/MdePkg/Library/BaseLib/Ia32/LongJump.s index 8ccffe4cc6..5fa1521226 100644 --- a/MdePkg/Library/BaseLib/Ia32/LongJump.s +++ b/MdePkg/Library/BaseLib/Ia32/LongJump.s @@ -32,7 +32,7 @@ _InternalLongJump: movl 8(%edx), %edi movl 12(%edx), %ebp movl 16(%edx), %esp - jmp 20(%edx) + jmp *20(%edx) #InternalLongJump ENDP |