summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/locore.s18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s
index 5a972db470f..239bb53babe 100644
--- a/sys/arch/i386/i386/locore.s
+++ b/sys/arch/i386/i386/locore.s
@@ -137,15 +137,15 @@
#ifdef GPROF
#define PENTRY(name) \
ENTRY(name) \
- pushl %ebp \
- movl %esp,%ebp \
- pushl %ebx \
- pushl _cpl \
- movl $0,_cpl \
- call _Xspllower \
- call mcount \
- popl _cpl \
- leal 4(%esp),%esp \
+ pushl %ebp; \
+ movl %esp,%ebp; \
+ pushl %ebx; \
+ pushl _cpl; \
+ movl $0,_cpl; \
+ call _Xspllower; \
+ call mcount; \
+ popl _cpl; \
+ leal 4(%esp),%esp; \
popl %ebp
#endif
#define ENTRY(name) .globl _/**/name; ALIGN_TEXT; _/**/name: