Commit 31488c64 by Nick Clifton Committed by Nick Clifton

(CPP_SPEC): Remove trailing semi-colon.

From-SVN: r64573
parent 685d0e07
2003-03-19 Nick Clifton <nickc@redhat.com>
* config/mcore/mcore.h (CPP_SPEC): Remove trailing semi-colon.
2003-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 2003-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR 10062 PR 10062
......
/* Definitions of target machine for GNU compiler, /* Definitions of target machine for GNU compiler,
for Motorola M*CORE Processor. for Motorola M*CORE Processor.
Copyright (C) 1993, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Copyright (C) 1993, 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GCC.
GNU CC is free software; you can redistribute it and/or modify GCC is free software; you can redistribute it and/or modify it
it under the terms of the GNU General Public License as published by under the terms of the GNU General Public License as published
the Free Software Foundation; either version 2, or (at your option) by the Free Software Foundation; either version 2, or (at your
any later version. option) any later version.
GNU CC is distributed in the hope that it will be useful, GCC is distributed in the hope that it will be useful, but WITHOUT
but WITHOUT ANY WARRANTY; without even the implied warranty of ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
GNU General Public License for more details. License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to along with GCC; see the file COPYING. If not, write to the
the Free Software Foundation, 59 Temple Place - Suite 330, Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#ifndef GCC_MCORE_H #ifndef GCC_MCORE_H
#define GCC_MCORE_H #define GCC_MCORE_H
...@@ -67,7 +68,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -67,7 +68,7 @@ Boston, MA 02111-1307, USA. */
/* If -m4align is ever re-enabled then add this line to the definition of CPP_SPEC /* If -m4align is ever re-enabled then add this line to the definition of CPP_SPEC
%{!m4align:-D__MCORE_ALIGN_8__} %{m4align:-D__MCORE__ALIGN_4__} */ %{!m4align:-D__MCORE_ALIGN_8__} %{m4align:-D__MCORE__ALIGN_4__} */
#undef CPP_SPEC #undef CPP_SPEC
#define CPP_SPEC "%{m210:%{mlittle-endian:%ethe m210 does not have little endian support}}"; #define CPP_SPEC "%{m210:%{mlittle-endian:%ethe m210 does not have little endian support}}"
/* We don't have a -lg library, so don't put it in the list. */ /* We don't have a -lg library, so don't put it in the list. */
#undef LIB_SPEC #undef LIB_SPEC
...@@ -374,7 +375,7 @@ extern int mcore_stack_increment; ...@@ -374,7 +375,7 @@ extern int mcore_stack_increment;
Aside from that, you can include as many other registers as you like. */ Aside from that, you can include as many other registers as you like. */
/* RBE: r15 {link register} not available across calls, /* RBE: r15 {link register} not available across calls,
* But we don't mark it that way here... */ But we don't mark it that way here... */
#define CALL_USED_REGISTERS \ #define CALL_USED_REGISTERS \
/* r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 ap c fp x19 */ \ /* r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 ap c fp x19 */ \
{ 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1} { 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}
...@@ -529,7 +530,7 @@ extern const int regno_reg_class[FIRST_PSEUDO_REGISTER]; ...@@ -529,7 +530,7 @@ extern const int regno_reg_class[FIRST_PSEUDO_REGISTER];
extern const enum reg_class reg_class_from_letter[]; extern const enum reg_class reg_class_from_letter[];
#define REG_CLASS_FROM_LETTER(C) \ #define REG_CLASS_FROM_LETTER(C) \
( ISLOWER (C) ? reg_class_from_letter[(C) - 'a'] : NO_REGS ) (ISLOWER (C) ? reg_class_from_letter[(C) - 'a'] : NO_REGS)
/* The letters I, J, K, L, M, N, O, and P in a register constraint string /* The letters I, J, K, L, M, N, O, and P in a register constraint string
can be used to stand for particular ranges of immediate operands. can be used to stand for particular ranges of immediate operands.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment