summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/LongJump.asm
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/LongJump.asm')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/LongJump.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/LongJump.asm b/MdePkg/Library/BaseLib/Ia32/LongJump.asm
index 5b7e21a..b52d890 100644
--- a/MdePkg/Library/BaseLib/Ia32/LongJump.asm
+++ b/MdePkg/Library/BaseLib/Ia32/LongJump.asm
@@ -20,10 +20,10 @@
;------------------------------------------------------------------------------
.386
- .model flat
+ .model flat,C
.code
-__LongJump PROC
+IntenralLongJump PROC
pop eax
pop edx
pop eax
@@ -33,6 +33,6 @@ __LongJump PROC
mov ebp, [edx + 12]
mov esp, [edx + 16]
jmp dword ptr [edx + 20]
-__LongJump ENDP
+IntenralLongJump ENDP
END