diff options
author | dfr <dfr@FreeBSD.org> | 2001-10-05 18:52:42 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2001-10-05 18:52:42 +0000 |
commit | 32880df50acb9a393c131bafa58788cd8f1cbaa3 (patch) | |
tree | 28ea6f97314438668d115a8aaa84ba38fde31391 | |
parent | 563c710867bb2e0f54b6dd7891e9875754a1f656 (diff) | |
download | FreeBSD-src-32880df50acb9a393c131bafa58788cd8f1cbaa3.zip FreeBSD-src-32880df50acb9a393c131bafa58788cd8f1cbaa3.tar.gz |
Fix a load of dependancy violations.
-rw-r--r-- | lib/libc/ia64/string/ffs.S | 10 | ||||
-rw-r--r-- | lib/libc/ia64/sys/fork.S | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/ia64/string/ffs.S b/lib/libc/ia64/string/ffs.S index 9c6e56e..c4ffd1b 100644 --- a/lib/libc/ia64/string/ffs.S +++ b/lib/libc/ia64/string/ffs.S @@ -45,7 +45,7 @@ ENTRY(ffs, 1) */ sub r15=r0,r14 mov ret0=1 ;; - and r15=r14,r15 + and r15=r14,r15 ;; extr.u r16=r15,0,8 ;; cmp.ne p6,p0=r0,r16 @@ -58,7 +58,7 @@ ENTRY(ffs, 1) cmp.ne p6,p0=r0,r16 (p6) br.dptk.few Ldo16 extr.u r15=r15,16,16 - add ret0=16,ret0 + add ret0=16,ret0 ;; Ldo16: /* @@ -68,7 +68,7 @@ Ldo16: cmp.ne p6,p0=r0,r16 (p6) br.dptk.few Ldo8 extr.u r15=r15,8,24 - add ret0=8,ret0 + add ret0=8,ret0 ;; Ldo8: and r16=0x0f,r15 /* lower 4 of 8 empty? */ @@ -80,11 +80,11 @@ Ldo8: /* If lower 4 bits empty, add 4 to result. */ (p6) br.dptk.few Ldo4 - add ret0=4,ret0 + add ret0=4,ret0 ;; Ldo4: /* If lower 2 bits of each 4 empty, add 2 to result. */ (p7) br.dptk.few Ldo2 - add ret0=2,ret0 + add ret0=2,ret0 ;; Ldo2: /* If lower bit of each 2 empty, add 1 to result. */ (p8) br.dptk.few Ldone diff --git a/lib/libc/ia64/sys/fork.S b/lib/libc/ia64/sys/fork.S index 65b6b21..2657e0d 100644 --- a/lib/libc/ia64/sys/fork.S +++ b/lib/libc/ia64/sys/fork.S @@ -28,8 +28,8 @@ #include "SYS.h" SYSCALL(fork) - cmp.ne p6,p0=ret1,r0 /* ret1!=0 for child */ + cmp.ne p7,p0=ret1,r0 /* ret1!=0 for child */ ;; -(p6) mov ret0=r0 +(p7) mov ret0=r0 br.ret.sptk.few rp END(fork) |