summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/FxRestore.S
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/FxRestore.S')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/FxRestore.S13
1 files changed, 3 insertions, 10 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/FxRestore.S b/MdePkg/Library/BaseLib/Ia32/FxRestore.S
index cc840de464..fa1922308f 100644
--- a/MdePkg/Library/BaseLib/Ia32/FxRestore.S
+++ b/MdePkg/Library/BaseLib/Ia32/FxRestore.S
@@ -21,10 +21,7 @@
#
#------------------------------------------------------------------------------
-
-
-
-
+.global _InternalX86FxRestore
#------------------------------------------------------------------------------
# VOID
@@ -33,11 +30,7 @@
# IN CONST IA32_FX_BUFFER *Buffer
# );
#------------------------------------------------------------------------------
-.global _InternalX86FxRestore
-_InternalX86FxRestore:
- movl 4(%esp),%eax
+_InternalX86FxRestore:
+ movl 4(%esp), %eax
fxrstor (%eax)
ret
-
-
-