diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 23:58:15 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 23:58:15 +0000 |
commit | 90d1f8d3c68f12b20886460094a2009d7827aa7e (patch) | |
tree | 0f994aa8dc3957fe18fcefd4f5592fcd922ea893 /arch/mips | |
parent | 35385d7a83b4cae6d5ea5f80f3b3377d94178344 (diff) |
Compilation fixes necessary for gcc-current.
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/softfp.S | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/arch/mips/kernel/softfp.S b/arch/mips/kernel/softfp.S index 6b1bd77eb..1cf4c3a42 100644 --- a/arch/mips/kernel/softfp.S +++ b/arch/mips/kernel/softfp.S @@ -1,10 +1,9 @@ -/* $Id: softfp.S,v 1.1 1998/07/16 19:10:02 ralf Exp $ - * +/* * 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) 1998 by Ralf Baechle + * Copyright (C) 1998, 2000 by Ralf Baechle * * For now it's just a crude hack good enough to run certain fp programs like * Mozilla. @@ -190,15 +189,15 @@ LEAF(simfp) #define FMT_switch(insn,opc,temp0,temp1) \ insn: srl temp0, opc, 19; \ andi temp0, 0x1c; \ - la temp1, insn ## .tab; \ + la temp1, insn##.tab; \ addu temp0, temp1; \ lw temp0, (temp0); \ jr temp0; \ \ .data; \ -insn ## .tab: \ - .word insn ## .s, insn ## .d, unimp, unimp; \ - .word insn ## .w, insn ## .l, unimp, unimp; \ +insn##.tab: \ + .word insn##.s, insn##.d, unimp, unimp; \ + .word insn##.w, insn##.l, unimp, unimp; \ .previous BITCH(add) |