OSDN Git Service

2003-01-29 Joel Sherrill <joel@OARcorp.com>
[pf3gnuchains/gcc-fork.git] / gcc / config / pa / pa-pro-end.h
1 /* Definitions of target machine for GNU compiler, for PRO.
2    Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Make GCC agree with types.h.  */
22 #undef SIZE_TYPE
23 #undef PTRDIFF_TYPE
24
25 #define SIZE_TYPE "unsigned int"
26 #define PTRDIFF_TYPE "int"
27
28 #undef TARGET_OS_CPP_BUILTINS
29 #define TARGET_OS_CPP_BUILTINS()                \
30   do                                            \
31     {                                           \
32         if (c_language != clk_cplusplus         \
33             && !flag_iso)                       \
34           {                                     \
35             builtin_define ("hppa");            \
36             builtin_define_std ("PWB");         \
37           }                                     \
38         builtin_define ("__pro__");             \
39         builtin_assert ("system=pro");          \
40     }                                           \
41   while (0)
42
43 /* Like the default, except no -lg.  */
44 #undef LIB_SPEC
45 #define LIB_SPEC "%{!p:%{!pg:-lc}}%{p: -L/lib/libp/ -lc}%{pg: -L/lib/libp/ -lc}"
46
47 /* hpux8 and later have C++ compatible include files, so do not
48    pretend they are `extern "C"'.  */
49 #define NO_IMPLICIT_EXTERN_C
50
51 /* We don't want a crt0.o to get linked in automatically, we want the
52    linker script to pull it in.  */
53 #undef STARTFILE_SPEC
54 #define STARTFILE_SPEC ""
55
56 /* The following two macros are identical to the ones in pa.h.  We need
57    to override the macros in elfos.h on the rtems and pro ports.  */
58
59 /* This says how to output an assembler line to define a global common symbol
60    with size SIZE (in bytes) and alignment ALIGN (in bits).  */
61
62 #undef ASM_OUTPUT_ALIGNED_COMMON
63 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGNED)            \
64 { bss_section ();                                                       \
65   assemble_name ((FILE), (NAME));                                       \
66   fputs ("\t.comm ", (FILE));                                           \
67   fprintf ((FILE), "%d\n", MAX ((SIZE), ((ALIGNED) / BITS_PER_UNIT)));}
68
69 /* This says how to output an assembler line to define a local common symbol
70    with size SIZE (in bytes) and alignment ALIGN (in bits).  */
71
72 #undef ASM_OUTPUT_ALIGNED_LOCAL
73 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNED)             \
74 { bss_section ();                                                       \
75   fprintf ((FILE), "\t.align %d\n", ((ALIGNED) / BITS_PER_UNIT));       \
76   assemble_name ((FILE), (NAME));                                       \
77   fprintf ((FILE), "\n\t.block %d\n", (SIZE));}