summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/X64/LongJump.asm
diff options
context:
space:
mode:
authorbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>2006-06-10 09:57:35 +0000
committerbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>2006-06-10 09:57:35 +0000
commit15176e0556bb7f445c85cdb1ea3e2cb2dd42a40a (patch)
tree7597c6eeb73c1716eb1152de268b17f753c5c1b1 /MdePkg/Library/BaseLib/X64/LongJump.asm
parentdee4740abe5925ff25e452c1a705a36f8fb3b4b9 (diff)
downloadedk2-platforms-15176e0556bb7f445c85cdb1ea3e2cb2dd42a40a.tar.xz
Fixed mistyping in Ia32/LongJump.asm and X64/LongJump.asm
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@466 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/X64/LongJump.asm')
-rw-r--r--MdePkg/Library/BaseLib/X64/LongJump.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BaseLib/X64/LongJump.asm b/MdePkg/Library/BaseLib/X64/LongJump.asm
index 7d468df674..fb6378d030 100644
--- a/MdePkg/Library/BaseLib/X64/LongJump.asm
+++ b/MdePkg/Library/BaseLib/X64/LongJump.asm
@@ -21,7 +21,7 @@
.code
-IntenralLongJump PROC
+InternalLongJump PROC
mov rbx, [rcx]
mov rsp, [rcx + 8]
mov rbp, [rcx + 10h]
@@ -33,6 +33,6 @@ IntenralLongJump PROC
mov r15, [rcx + 40h]
mov rax, rdx
jmp qword ptr [rcx + 48h]
-IntenralLongJump ENDP
+InternalLongJump ENDP
END