Update of /cvsroot/linux-mips/linux/include/asm-mips
In directory usw-pr-cvs1:/tmp/cvs-serv14730
Modified Files:
asm.h
Log Message:
Use .pushsection / .popsection. This means binutils 2.8 can no longer be used to build the MIPS kernel from now on.
Index: asm.h
===================================================================
RCS file: /cvsroot/linux-mips/linux/include/asm-mips/asm.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- asm.h 2001/11/19 17:30:16 1.4
+++ asm.h 2002/01/28 20:53:19 1.5
@@ -1,6 +1,4 @@
/*
- * include/asm-mips/asm.h
- *
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
@@ -124,20 +122,20 @@
TEXT(string)
#define TEXT(msg) \
- .data; \
+ .pushsection .data; \
8: .asciiz msg; \
- .previous;
+ .popsection;
/*
* Build text tables
*/
#define TTABLE(string) \
- .text; \
+ .pushsection .text; \
.word 1f; \
.previous; \
.data; \
1: .asciz string; \
- .previous
+ .popsection
/*
* MIPS IV pref instruction.
|