Remove some spaces so GAS 2 won't barf (but I think I will)...

This commit is contained in:
mycroft 1993-06-17 12:05:29 +00:00
parent 0a7b3f32a1
commit 7811307516
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ ENTRY(exect)
lea SYS_execve,%eax
pushf
popl %edx
orl $ PSL_T,%edx
orl $PSL_T,%edx
pushl %edx
popf
LCALL(7,0)

View File

@ -52,7 +52,7 @@ ENTRY(sigprocmask)
jmp 2f
1: movl (%ecx),%ecx # fetch indirect ...
movl %ecx,8(%esp) # to new mask arg
2: movl $ SYS_sigprocmask , %eax
2: movl $SYS_sigprocmask , %eax
LCALL(0x7,0)
jb err
movl 12(%esp),%ecx # fetch old mask requested

View File

@ -47,7 +47,7 @@ ENTRY(sigsuspend)
movl 4(%esp),%eax # fetch mask arg
movl (%eax),%eax # indirect to mask arg
movl %eax,4(%esp)
movl $ SYS_sigsuspend ,%eax
movl $SYS_sigsuspend ,%eax
LCALL(0x7,0)
jb err
xorl %eax,%eax # shouldn t happen