diff options
author | davem <davem@cvs.openbsd.org> | 1995-10-23 08:52:40 +0000 |
---|---|---|
committer | davem <davem@cvs.openbsd.org> | 1995-10-23 08:52:40 +0000 |
commit | 33bd1bc5c7a92450194c6be9ea0e5f22e11bf069 (patch) | |
tree | c22613d0a21c8a8035a2387f7d6566d220cb01ac | |
parent | 83443b42bd04ca4469d126bd6505083c2f815c1d (diff) |
Changed 'beq' -> 'be' to get rid of gas heartburn.
-rw-r--r-- | sys/arch/sparc/sparc/locore.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/sparc/sparc/locore.s b/sys/arch/sparc/sparc/locore.s index a4daf902b4f..af2bdfc65b2 100644 --- a/sys/arch/sparc/sparc/locore.s +++ b/sys/arch/sparc/sparc/locore.s @@ -1126,7 +1126,7 @@ xnormal_mem_fault: */ set AC_BUS_ERR, %o0 ! bus error register cmp %l3, T_TEXTFAULT ! text fault always on PC - beq normal_mem_fault ! go + be normal_mem_fault ! go lduba [%o0] ASI_CONTROL, %o1 ! get its value #define STORE_BIT 21 /* bit that indicates a store instruction for sparc */ @@ -2503,7 +2503,7 @@ dostart: */ set 0x4000, %g7 cmp %o0, %g7 - beq is_sun4 + be is_sun4 nop #if defined(SUN4C) || defined(SUN4M) @@ -2527,10 +2527,10 @@ dostart: set _cputypval-KERNBASE, %o2 ! buffer ptr ldub [%o2 + 4], %o0 ! which is it... "sun4c", "sun4m", "sun4d"? cmp %o0, 'c' - beq is_sun4c + be is_sun4c nop cmp %o0, 'm' - beq is_sun4m + be is_sun4m nop #endif /* SUN4C || SUN4M */ @@ -2912,7 +2912,7 @@ startmap_done: * "restore" */ cmp %o0, 8 - beq 1f + be 1f noplab: nop set noplab, %l0 ld [%l0], %l1 @@ -3836,7 +3836,7 @@ Lsw_havectx: sethi %hi(_cputyp), %o1 ! what cpu are we running on? ld [%o1 + %lo(_cputyp)], %o1 cmp %o1, CPU_SUN4M - beq 1f + be 1f nop #endif #if defined(SUN4) || defined(SUN4C) |