annotate gcc/config/m68k/rtemself.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents a06113de4d67
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Definitions for rtems targeting a Motorola m68k using elf.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 Copyright (C) 1999, 2000, 2002 National Research Council of Canada.
111
kono
parents: 0
diff changeset
3 Copyright (C) 2007-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 Contributed by Charles-Antoine Gauthier (charles.gauthier@nrc.ca).
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5
111
kono
parents: 0
diff changeset
6 This file is part of GCC.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
111
kono
parents: 0
diff changeset
8 GCC is free software; you can redistribute it and/or modify it
kono
parents: 0
diff changeset
9 under the terms of the GNU General Public License as published
kono
parents: 0
diff changeset
10 by the Free Software Foundation; either version 3, or (at your
kono
parents: 0
diff changeset
11 option) any later version.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12
111
kono
parents: 0
diff changeset
13 GCC is distributed in the hope that it will be useful, but WITHOUT
kono
parents: 0
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
kono
parents: 0
diff changeset
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
kono
parents: 0
diff changeset
16 License for more details.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17
111
kono
parents: 0
diff changeset
18 Under Section 7 of GPL version 3, you are granted additional
kono
parents: 0
diff changeset
19 permissions described in the GCC Runtime Library Exception, version
kono
parents: 0
diff changeset
20 3.1, as published by the Free Software Foundation.
kono
parents: 0
diff changeset
21
kono
parents: 0
diff changeset
22 You should have received a copy of the GNU General Public License and
kono
parents: 0
diff changeset
23 a copy of the GCC Runtime Library Exception along with this program;
kono
parents: 0
diff changeset
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
kono
parents: 0
diff changeset
25 <http://www.gnu.org/licenses/>. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 /* Target OS builtins. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 #undef TARGET_OS_CPP_BUILTINS /* Defined in m68kemb.h. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 #define TARGET_OS_CPP_BUILTINS() \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 do \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 { \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 builtin_define_std ("mc68000"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 builtin_define ("__USE_INIT_FINI__"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 builtin_define ("__rtems__"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 builtin_assert ("system=rtems"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 } \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 while (0)