Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / config / mips / elf.h
blob572553742f43e7323ff9ac2c652183e7f4234da5
1 /* Target macros for mips*-elf targets.
2 Copyright (C) 1994, 1997, 1999, 2000, 2002, 2003, 2004, 2007, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* MIPS assemblers don't have the usual .set foo,bar construct;
22 .set is used for assembler options instead. */
23 #undef SET_ASM_OP
24 #define ASM_OUTPUT_DEF(FILE, LABEL1, LABEL2) \
25 do \
26 { \
27 fputc ('\t', FILE); \
28 assemble_name (FILE, LABEL1); \
29 fputs (" = ", FILE); \
30 assemble_name (FILE, LABEL2); \
31 fputc ('\n', FILE); \
32 } \
33 while (0)
35 #undef ASM_DECLARE_OBJECT_NAME
36 #define ASM_DECLARE_OBJECT_NAME mips_declare_object_name
38 #undef ASM_FINISH_DECLARE_OBJECT
39 #define ASM_FINISH_DECLARE_OBJECT mips_finish_declare_object
41 /* Leave the linker script to choose the appropriate libraries. */
42 #undef LIB_SPEC
43 #define LIB_SPEC ""
45 #undef STARTFILE_SPEC
46 #define STARTFILE_SPEC "crti%O%s crtbegin%O%s"
48 #undef ENDFILE_SPEC
49 #define ENDFILE_SPEC "crtend%O%s crtn%O%s"
51 #define NO_IMPLICIT_EXTERN_C 1