diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 19:40:47 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 19:40:47 +0000 |
commit | 4abd60e168249a6852fd88d9f333b234dbd3e0fc (patch) | |
tree | 3cfdc7529b6dafc48c886a77a0b1508306304e00 | |
parent | 9e3b38b973b449e206ffab70b196bc28088267c4 (diff) |
profiling macro needs semicolons, obviously hasn't been used in a long time
-rw-r--r-- | sys/arch/i386/i386/locore.s | 18 |
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: |