Module Name: src
Committed By: christos
Date: Sun Nov 25 01:10:37 UTC 2012
Modified Files:
src/sys/arch/powerpc/include: asm.h
Log Message:
provide _ENTRY(x) because some code needs it.
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/powerpc/include/asm.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/include/asm.h
diff -u src/sys/arch/powerpc/include/asm.h:1.39 src/sys/arch/powerpc/include/asm.h:1.40
--- src/sys/arch/powerpc/include/asm.h:1.39 Tue Oct 25 21:46:11 2011
+++ src/sys/arch/powerpc/include/asm.h Sat Nov 24 20:10:37 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: asm.h,v 1.39 2011/10/26 01:46:11 christos Exp $ */
+/* $NetBSD: asm.h,v 1.40 2012/11/25 01:10:37 christos Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -106,7 +106,7 @@
# define SF_LR 16
# define SF_PARAM SF_HEADER_SZ
-# define ENTRY(y) \
+# define _ENTRY(y) \
.globl y; \
.section ".opd","aw"; \
.align 3; \
@@ -118,6 +118,8 @@ y: .quad .y,.TOC.@tocbase,0; \
.align 3; \
.y:
+# define ENTRY(y) _ENTRY(y)
+
# define END(y)
# define CALL(y) \