Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/include Rework ALTENTRY a bit.



details:   https://anonhg.NetBSD.org/src/rev/13198d80b778
branches:  trunk
changeset: 494173:13198d80b778
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Jul 03 04:24:56 2000 +0000

description:
Rework ALTENTRY a bit.

diffstat:

 sys/arch/vax/include/asm.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6ee61aa47a11 -r 13198d80b778 sys/arch/vax/include/asm.h
--- a/sys/arch/vax/include/asm.h        Mon Jul 03 04:24:12 2000 +0000
+++ b/sys/arch/vax/include/asm.h        Mon Jul 03 04:24:56 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: asm.h,v 1.12 2000/07/01 06:42:06 matt Exp $ */
+/*     $NetBSD: asm.h,v 1.13 2000/07/03 04:24:56 matt Exp $ */
 /*
  * Copyright (c) 1982, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -98,7 +98,7 @@
 #define NENTRY(x, regs)                _ENTRY(_C_LABEL(x), regs)
 #define ASENTRY(x, regs)       _ENTRY(_ASM_LABEL(x), regs); _PROF_PROLOGUE
 
-#define ALTENTRY(x)            .globl _C_LABEL(x); _C_LABEL(x):
+#define ALTENTRY(x)            .text; _ALIGN_TEXT; .globl _C_LABEL(x); _C_LABEL(x):
 #define RCSID(x)               .text; .asciz x
 
 #define        WEAK_ALIAS(alias,sym)                                           \



Home | Main Index | Thread Index | Old Index