1 /* Definitions of taret machine for GNU compiler.
3 Copyright 2001, 2002, 2005 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #undef PREFERRED_DEBUGGING_TYPE
24 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
26 #define TARGET_OS_CPP_BUILTINS() LINUX_TARGET_OS_CPP_BUILTINS()
29 #define CPP_SPEC "%{mam33:-D__AM33__} %{!mam33:-D__AM33__=2 -D__AM33_2__} \
30 %{posix:-D_POSIX_SOURCE} \
31 %{pthread:-D_REENTRANT -D_PTHREADS}"
34 #define ASM_SPEC "%{Wa,*:%*}"
37 #define LINK_SPEC "%{mrelax:--relax} %{shared:-shared} \
39 %{rdynamic:-export-dynamic} \
40 %{!dynamic-linker:-dynamic-linker /lib/ld.so.1}} \
43 #undef PROCESSOR_DEFAULT
44 #define PROCESSOR_DEFAULT PROCESSOR_AM33_2
47 #define TARGET_VERSION fprintf (stderr, " (AM33/2.0 GNU/Linux)");
49 #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
51 extern int mn10300_protect_label
;
54 #define PRINT_OPERAND(FILE, X, CODE) \
57 mn10300_protect_label = 1; \
58 print_operand ((FILE), (X), (CODE)); \
59 mn10300_protect_label = 0; \
63 #undef PRINT_OPERAND_ADDRESS
64 #define PRINT_OPERAND_ADDRESS(FILE, X) \
67 mn10300_protect_label = 1; \
68 print_operand_address ((FILE), (X)); \
69 mn10300_protect_label = 0; \
73 #undef ASM_OUTPUT_LABELREF
74 #define ASM_OUTPUT_LABELREF(FILE, NAME) \
77 const char * real_name; \
79 real_name = (*targetm.strip_name_encoding) (NAME); \
80 if (mn10300_protect_label) \
81 asm_fprintf (FILE, "+"); \
82 asm_fprintf (FILE, "%U%s", real_name); \