diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-11-20 03:49:01 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-11-20 03:49:01 +0000 |
commit | 4e4c02bb8c7efc53e411873b17e014b38be070f9 (patch) | |
tree | e93d620025dcf548d26a8cd22aa8b130f64bd914 /arch/mips/kernel/r4k_fpu.S | |
parent | e088a9e30c84700ed37ab3c211baceac682ccaae (diff) |
Remove ## operator that breaks kernel compile with latest gcc.
Diffstat (limited to 'arch/mips/kernel/r4k_fpu.S')
-rw-r--r-- | arch/mips/kernel/r4k_fpu.S | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/mips/kernel/r4k_fpu.S b/arch/mips/kernel/r4k_fpu.S index c5649bd03..d55ac303a 100644 --- a/arch/mips/kernel/r4k_fpu.S +++ b/arch/mips/kernel/r4k_fpu.S @@ -1,12 +1,11 @@ -/* $Id: r4k_fpu.S,v 1.8 1999/09/28 22:25:47 ralf Exp $ - * +/* * r4k_fpu.S: Save/restore floating point context for signal handlers. * * 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. * - * Copyright (C) 1996, 1998 by Ralf Baechle + * Copyright (C) 1996, 1998, 2000 by Ralf Baechle * * Multi-arch abstraction and asm macros for easier reading: * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) @@ -19,7 +18,7 @@ #include <asm/regdef.h> #define EX(a,b) \ -9: a,##b; \ +9: a,b; \ .section __ex_table,"a"; \ PTR 9b, fault; \ .previous |