summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/Monitor.S
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/Monitor.S')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/Monitor.S18
1 files changed, 6 insertions, 12 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/Monitor.S b/MdePkg/Library/BaseLib/Ia32/Monitor.S
index 8da0e341ed..371e1839fc 100644
--- a/MdePkg/Library/BaseLib/Ia32/Monitor.S
+++ b/MdePkg/Library/BaseLib/Ia32/Monitor.S
@@ -21,9 +21,7 @@
#
#------------------------------------------------------------------------------
-
-
-
+.global _AsmMonitor
#------------------------------------------------------------------------------
# UINT64
@@ -34,13 +32,9 @@
# IN UINTN Edx
# );
#------------------------------------------------------------------------------
-.global _AsmMonitor
-_AsmMonitor:
- movl 4(%esp),%eax
- movl 8(%esp),%ecx
- movl 12(%esp),%edx
- monitor %eax,%ecx,%edx
+_AsmMonitor:
+ movl 4(%esp), %eax
+ movl 8(%esp), %ecx
+ movl 12(%esp), %edx
+ monitor %eax, %ecx, %edx
ret
-
-
-