Remove unknown .even, complete a string in a macro call.
This commit is contained in:
parent
b1def2c4bb
commit
29bc127e91
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: asm.h,v 1.10 1997/05/08 13:44:11 matthias Exp $ */
|
/* $NetBSD: asm.h,v 1.11 1997/11/10 01:50:25 phil Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mach Operating System
|
* Mach Operating System
|
||||||
|
@ -189,8 +189,7 @@
|
||||||
#define PANIC(message) \
|
#define PANIC(message) \
|
||||||
addr 9f,tos ; \
|
addr 9f,tos ; \
|
||||||
bsr _C_LABEL(panic) ; \
|
bsr _C_LABEL(panic) ; \
|
||||||
9: .asciz message ; \
|
9: .asciz message
|
||||||
.even
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Shorthand for defining vectors for the vector table.
|
* Shorthand for defining vectors for the vector table.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: locore.s,v 1.47 1997/05/08 13:44:13 matthias Exp $ */
|
/* $NetBSD: locore.s,v 1.48 1997/11/10 01:50:37 phil Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1993 Philip A. Nelson.
|
* Copyright (c) 1993 Philip A. Nelson.
|
||||||
|
@ -576,7 +576,7 @@ ENTRY(setrunqueue)
|
||||||
movd r2,P_BACK(r0) /* set p->p_back */
|
movd r2,P_BACK(r0) /* set p->p_back */
|
||||||
ret 0
|
ret 0
|
||||||
#ifdef DIAGNOSTIC
|
#ifdef DIAGNOSTIC
|
||||||
1: PANIC("setrunqueue) /* Was on the list! */
|
1: PANIC("setrunqueue") /* Was on the list! */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue