Prefix the register argument of indirect 'jmp's with a * to make gas 2.10.x

happy.
This commit is contained in:
John Baldwin 2000-11-28 22:59:14 +00:00
parent 17aa4afba3
commit 9a51cfcde1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69332
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ ENTRY(vfork)
je 1f /* yes */
movl $0,%eax
1:
jmp %ecx
jmp *%ecx
2:
pushl %ecx
PIC_PROLOGUE

View File

@ -57,4 +57,4 @@ ENTRY(alloca)
pushl 4(%ecx)
pushl 0(%ecx)
pushl %eax /* dummy to pop at callsite */
jmp %edx /* "return" */
jmp *%edx /* "return" */

View File

@ -65,7 +65,7 @@ ENTRY(vfork)
je 1f /* yes */
movl $0,%eax
1:
jmp %ecx
jmp *%ecx
2:
pushl %ecx
PIC_PROLOGUE