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