1 /* Target macros for mips*-elf targets. 2 Copyright (C) 1994, 1997, 1999, 2000, 2002, 2003, 2004, 2007 3 Free Software Foundation, Inc. 4 5 This file is part of GCC. 6 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. 11 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. 16 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/>. */ 20 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) 34 35 #undef ASM_DECLARE_OBJECT_NAME 36 #define ASM_DECLARE_OBJECT_NAME mips_declare_object_name 37 38 #undef ASM_FINISH_DECLARE_OBJECT 39 #define ASM_FINISH_DECLARE_OBJECT mips_finish_declare_object 40 41 /* Leave the linker script to choose the appropriate libraries. */ 42 #undef LIB_SPEC 43 #define LIB_SPEC "" 44 45 #undef STARTFILE_SPEC 46 #define STARTFILE_SPEC "crti%O%s crtbegin%O%s" 47 48 #undef ENDFILE_SPEC 49 #define ENDFILE_SPEC "crtend%O%s crtn%O%s" 50 51 #define NO_IMPLICIT_EXTERN_C 1 52 53 #define HANDLE_PRAGMA_PACK_PUSH_POP 1 54