diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-24 20:58:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-11-24 20:58:27 +0000 |
commit | c971d45144e1eccd9332099521cdab41bf38e0c8 (patch) | |
tree | 5d30da605bfbb55b020eeb8af789c7998b821a13 /sys/arch/m68k/include/asm.h | |
parent | 4818258b02d2b275691015bbb3bda6a0e02e4839 (diff) |
make ALTENTRY() use _C_LABEL() for the 2nd argument, and adjust callers
ok miod
Diffstat (limited to 'sys/arch/m68k/include/asm.h')
-rw-r--r-- | sys/arch/m68k/include/asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/asm.h b/sys/arch/m68k/include/asm.h index cf7762dc3a6..6e806a72da0 100644 --- a/sys/arch/m68k/include/asm.h +++ b/sys/arch/m68k/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.7 2007/05/15 13:46:22 martin Exp $ */ +/* $OpenBSD: asm.h,v 1.8 2007/11/24 20:58:26 deraadt Exp $ */ /* $NetBSD: asm.h,v 1.13 1997/04/24 22:49:39 thorpej Exp $ */ /* @@ -88,7 +88,7 @@ * to use it would be a desirable change. */ #ifdef PROF -#define ALTENTRY(name, rname) ENTRY(name); jra rname+12 +#define ALTENTRY(name, rname) ENTRY(name); jra _C_LABEL(rname)+12 #else #define ALTENTRY(name, rname) _ENTRY(_C_LABEL(name)) #endif |