OSDN Git Service

Update FSF address.
[pf3gnuchains/gcc-fork.git] / gcc / config / sh / superh64.h
1 /* 
2  Definitions of target machine for gcc for SuperH using target sh-superh-elf,
3  
4    Copyright 2000 Free Software Foundation, Inc.
5    Contributed by Alexandre Oliva <aoliva@redhat.com>
6    Modified for SuperH by Richard Shann
7
8 This file is part of GNU CC.
9
10 GNU CC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GNU CC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GNU CC; see the file COPYING.  If not, write to
22 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA.  */
24
25 /* This header file is used when the vendor name is set to 'superh'.
26    It configures the compiler for SH5 only and switches the default
27    endianess to little.
28    This file is intended to overide sh.h, superh.h and sh64.h (which
29    should have been included in that order) */
30
31
32 #ifndef _SUPERH_H
33  #error superh64.h should not be used without superh.h
34 #endif
35
36 /* We override TARGET_PROCESSOR_SWITCHES in order to remove all the unrequired cpu options */
37 #undef TARGET_PROCESSOR_SWITCHES
38 #define TARGET_PROCESSOR_SWITCHES                       \
39   {"5-64media", TARGET_NONE, "" },              \
40   {"5-64media", SELECT_SH5_64, "SH5 64-bit SHmedia code" }, \
41   {"5-64media-nofpu", TARGET_NONE, "" },        \
42   {"5-64media-nofpu", SELECT_SH5_64_NOFPU, "SH5 64-bit FPU-less SHmedia code" }, \
43   {"5-32media", TARGET_NONE, "" },              \
44   {"5-32media", SELECT_SH5_32, "SH5 32-bit SHmedia code" }, \
45   {"5-32media-nofpu", TARGET_NONE, "" },        \
46   {"5-32media-nofpu", SELECT_SH5_32_NOFPU, "SH5 32-bit FPU-less SHmedia code" }, \
47   {"5-compact", TARGET_NONE, "" },              \
48   {"5-compact", SELECT_SH5_COMPACT, "SH5 SHcompact code" }, \
49   {"5-compact-nofpu", TARGET_NONE, "" },        \
50   {"5-compact-nofpu", SELECT_SH5_COMPACT_NOFPU, "SH5 FPU-less SHcompact code" }