OSDN Git Service

* system.h (__NO_STRING_INLINES): Define.
[pf3gnuchains/gcc-fork.git] / gcc / system.h
1 /* Get common system includes and various definitions and declarations based
2    on autoconf macros.
3    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 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 it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22
23 #ifndef GCC_SYSTEM_H
24 #define GCC_SYSTEM_H
25
26 /* We must include stdarg.h/varargs.h before stdio.h.  */
27 #ifdef ANSI_PROTOTYPES
28 #include <stdarg.h>
29 #else
30 #include <varargs.h>
31 #endif
32
33 #ifndef va_copy
34 # ifdef __va_copy
35 #   define va_copy(d,s)  __va_copy((d),(s))
36 # else
37 #   define va_copy(d,s)  ((d) = (s))
38 # endif
39 #endif
40
41 #ifdef HAVE_STDDEF_H
42 # include <stddef.h>
43 #endif
44
45 #include <stdio.h>
46
47 /* Define a generic NULL if one hasn't already been defined.  */
48 #ifndef NULL
49 #define NULL 0
50 #endif
51
52 /* The compiler is not a multi-threaded application and therefore we
53    do not have to use the locking functions.  In fact, using the locking
54    functions can cause the compiler to be significantly slower under
55    I/O bound conditions (such as -g -O0 on very large source files).
56
57    HAVE_DECL_PUTC_UNLOCKED actually indicates whether or not the stdio
58    code is multi-thread safe by default.  If it is set to 0, then do
59    not worry about using the _unlocked functions.
60    
61    fputs_unlocked, fwrite_unlocked, and fprintf_unlocked are
62    extensions and need to be prototyped by hand (since we do not
63    define _GNU_SOURCE).  */
64
65 #if defined HAVE_DECL_PUTC_UNLOCKED && HAVE_DECL_PUTC_UNLOCKED
66
67 # ifdef HAVE_PUTC_UNLOCKED
68 #  undef putc
69 #  define putc(C, Stream) putc_unlocked (C, Stream)
70 # endif
71 # ifdef HAVE_FPUTC_UNLOCKED
72 #  undef fputc
73 #  define fputc(C, Stream) fputc_unlocked (C, Stream)
74 # endif
75
76 # ifdef HAVE_FPUTS_UNLOCKED
77 #  undef fputs
78 #  define fputs(String, Stream) fputs_unlocked (String, Stream)
79 #  if defined (HAVE_DECL_FPUTS_UNLOCKED) && !HAVE_DECL_FPUTS_UNLOCKED
80 extern int fputs_unlocked PARAMS ((const char *, FILE *));
81 #  endif
82 # endif
83 # ifdef HAVE_FWRITE_UNLOCKED
84 #  undef fwrite
85 #  define fwrite(Ptr, Size, N, Stream) fwrite_unlocked (Ptr, Size, N, Stream)
86 #  if defined (HAVE_DECL_FWRITE_UNLOCKED) && !HAVE_DECL_FWRITE_UNLOCKED
87 extern int fwrite_unlocked PARAMS ((const PTR, size_t, size_t, FILE *));
88 #  endif
89 # endif
90 # ifdef HAVE_FPRINTF_UNLOCKED
91 #  undef fprintf
92 /* We can't use a function-like macro here because we don't know if
93    we have varargs macros.  */
94 #  define fprintf fprintf_unlocked
95 #  if defined (HAVE_DECL_FPRINTF_UNLOCKED) && !HAVE_DECL_FPRINTF_UNLOCKED
96 extern int fprintf_unlocked PARAMS ((FILE *, const char *, ...));
97 #  endif
98 # endif
99
100 #endif
101
102 /* There are an extraordinary number of issues with <ctype.h>.
103    The last straw is that it varies with the locale.  Use libiberty's
104    replacement instead.  */
105 #include <safe-ctype.h>
106
107 #include <sys/types.h>
108
109 #include <errno.h>
110
111 #if !defined (errno) && defined (HAVE_DECL_ERRNO) && !HAVE_DECL_ERRNO
112 extern int errno;
113 #endif
114
115 /* Some of glibc's string inlines cause warnings.  Plus we'd rather
116    rely on (and therefore test) GCC's string builtins.  */
117 #define __NO_STRING_INLINES
118
119 #ifdef STRING_WITH_STRINGS
120 # include <string.h>
121 # include <strings.h>
122 #else
123 # ifdef HAVE_STRING_H
124 #  include <string.h>
125 # else
126 #  ifdef HAVE_STRINGS_H
127 #   include <strings.h>
128 #  endif
129 # endif
130 #endif
131
132 #ifdef HAVE_STDLIB_H
133 # include <stdlib.h>
134 #endif
135
136 /* If we don't have an overriding definition, set SUCCESS_EXIT_CODE and
137    FATAL_EXIT_CODE to EXIT_SUCCESS and EXIT_FAILURE respectively,
138    or 0 and 1 if those macros are not defined.  */
139 #ifndef SUCCESS_EXIT_CODE
140 # ifdef EXIT_SUCCESS
141 #  define SUCCESS_EXIT_CODE EXIT_SUCCESS
142 # else
143 #  define SUCCESS_EXIT_CODE 0
144 # endif
145 #endif
146
147 #ifndef FATAL_EXIT_CODE
148 # ifdef EXIT_FAILURE
149 #  define FATAL_EXIT_CODE EXIT_FAILURE
150 # else
151 #  define FATAL_EXIT_CODE 1
152 # endif
153 #endif
154
155 #ifdef HAVE_UNISTD_H
156 # include <unistd.h>
157 #endif
158
159 #ifdef HAVE_SYS_PARAM_H
160 # include <sys/param.h>
161 /* We use this identifier later and it appears in some vendor param.h's.  */
162 # undef PREFETCH
163 #endif
164
165 #if HAVE_LIMITS_H
166 # include <limits.h>
167 #endif
168
169 /* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT.  */
170 #include "hwint.h"
171
172 /* A macro to determine whether a VALUE lies inclusively within a
173    certain range without evaluating the VALUE more than once.  This
174    macro won't warn if the VALUE is unsigned and the LOWER bound is
175    zero, as it would e.g. with "VALUE >= 0 && ...".  Note the LOWER
176    bound *is* evaluated twice, and LOWER must not be greater than
177    UPPER.  However the bounds themselves can be either positive or
178    negative.  */
179 #define IN_RANGE(VALUE, LOWER, UPPER) \
180   ((unsigned HOST_WIDE_INT) ((VALUE) - (LOWER)) <= ((UPPER) - (LOWER)))
181
182 /* Infrastructure for defining missing _MAX and _MIN macros.  Note that
183    macros defined with these cannot be used in #if.  */
184
185 /* The extra casts work around common compiler bugs.  */
186 #define INTTYPE_SIGNED(t) (! ((t) 0 < (t) -1))
187 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
188    It is necessary at least when t == time_t.  */
189 #define INTTYPE_MINIMUM(t) ((t) (INTTYPE_SIGNED (t) \
190                              ? ~ (t) 0 << (sizeof(t) * CHAR_BIT - 1) : (t) 0))
191 #define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t)))
192
193 /* Use that infrastructure to provide a few constants.  */
194 #ifndef UCHAR_MAX
195 # define UCHAR_MAX INTTYPE_MAXIMUM (unsigned char)
196 #endif
197
198 #ifdef TIME_WITH_SYS_TIME
199 # include <sys/time.h>
200 # include <time.h>
201 #else
202 # if HAVE_SYS_TIME_H
203 #  include <sys/time.h>
204 # else
205 #  ifdef HAVE_TIME_H
206 #   include <time.h>
207 #  endif
208 # endif
209 #endif
210
211 #ifdef HAVE_FCNTL_H
212 # include <fcntl.h>
213 #else
214 # ifdef HAVE_SYS_FILE_H
215 #  include <sys/file.h>
216 # endif
217 #endif
218
219 #ifndef SEEK_SET
220 # define SEEK_SET 0
221 # define SEEK_CUR 1
222 # define SEEK_END 2
223 #endif
224 #ifndef F_OK
225 # define F_OK 0
226 # define X_OK 1
227 # define W_OK 2
228 # define R_OK 4
229 #endif
230 #ifndef O_RDONLY
231 # define O_RDONLY 0
232 #endif
233 #ifndef O_WRONLY
234 # define O_WRONLY 1
235 #endif
236
237 /* Some systems define these in, e.g., param.h.  We undefine these names
238    here to avoid the warnings.  We prefer to use our definitions since we
239    know they are correct.  */
240
241 #undef MIN
242 #undef MAX
243 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
244 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
245
246 /* Returns the least number N such that N * Y >= X.  */
247 #define CEIL(x,y) (((x) + (y) - 1) / (y))
248
249 #ifdef HAVE_SYS_WAIT_H
250 #include <sys/wait.h>
251 #endif
252
253 #ifndef WIFSIGNALED
254 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
255 #endif
256 #ifndef WTERMSIG
257 #define WTERMSIG(S) ((S) & 0x7f)
258 #endif
259 #ifndef WIFEXITED
260 #define WIFEXITED(S) (((S) & 0xff) == 0)
261 #endif
262 #ifndef WEXITSTATUS
263 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
264 #endif
265 #ifndef WSTOPSIG
266 #define WSTOPSIG WEXITSTATUS
267 #endif
268
269 /* The HAVE_DECL_* macros are three-state, undefined, 0 or 1.  If they
270    are defined to 0 then we must provide the relevant declaration
271    here.  These checks will be in the undefined state while configure
272    is running so be careful to test "defined (HAVE_DECL_*)".  */
273
274 #if defined (HAVE_DECL_ATOF) && !HAVE_DECL_ATOF
275 extern double atof PARAMS ((const char *));
276 #endif
277
278 #if defined (HAVE_DECL_ATOL) && !HAVE_DECL_ATOL
279 extern long atol PARAMS ((const char *));
280 #endif
281
282 #if defined (HAVE_DECL_FREE) && !HAVE_DECL_FREE
283 extern void free PARAMS ((PTR));
284 #endif
285
286 #if defined (HAVE_DECL_GETCWD) && !HAVE_DECL_GETCWD
287 extern char *getcwd PARAMS ((char *, size_t));
288 #endif
289
290 #if defined (HAVE_DECL_GETENV) && !HAVE_DECL_GETENV
291 extern char *getenv PARAMS ((const char *));
292 #endif
293
294 #if defined (HAVE_DECL_GETOPT) && !HAVE_DECL_GETOPT
295 extern int getopt PARAMS ((int, char * const *, const char *));
296 #endif
297
298 #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD
299 extern char *getwd PARAMS ((char *));
300 #endif
301
302 #if defined (HAVE_DECL_SBRK) && !HAVE_DECL_SBRK
303 extern PTR sbrk PARAMS ((int));
304 #endif
305
306 #if defined (HAVE_DECL_STRSTR) && !HAVE_DECL_STRSTR
307 extern char *strstr PARAMS ((const char *, const char *));
308 #endif
309
310 #ifdef HAVE_MALLOC_H
311 #include <malloc.h>
312 #endif
313
314 #if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC
315 extern PTR malloc PARAMS ((size_t));
316 #endif
317
318 #if defined (HAVE_DECL_CALLOC) && !HAVE_DECL_CALLOC
319 extern PTR calloc PARAMS ((size_t, size_t));
320 #endif
321
322 #if defined (HAVE_DECL_REALLOC) && !HAVE_DECL_REALLOC
323 extern PTR realloc PARAMS ((PTR, size_t));
324 #endif
325
326 /* If the system doesn't provide strsignal, we get it defined in
327    libiberty but no declaration is supplied.  */
328 #if !defined (HAVE_STRSIGNAL) \
329     || (defined (HAVE_DECL_STRSIGNAL) && !HAVE_DECL_STRSIGNAL)
330 # ifndef strsignal
331 extern const char *strsignal PARAMS ((int));
332 # endif
333 #endif
334
335 #ifdef HAVE_GETRLIMIT
336 # if defined (HAVE_DECL_GETRLIMIT) && !HAVE_DECL_GETRLIMIT
337 #  ifndef getrlimit
338 #   ifdef ANSI_PROTOTYPES
339 struct rlimit;
340 #   endif
341 extern int getrlimit PARAMS ((int, struct rlimit *));
342 #  endif
343 # endif
344 #endif
345
346 #ifdef HAVE_SETRLIMIT
347 # if defined (HAVE_DECL_SETRLIMIT) && !HAVE_DECL_SETRLIMIT
348 #  ifndef setrlimit
349 #   ifdef ANSI_PROTOTYPES
350 struct rlimit;
351 #   endif
352 extern int setrlimit PARAMS ((int, const struct rlimit *));
353 #  endif
354 # endif
355 #endif
356
357 /* HAVE_VOLATILE only refers to the stage1 compiler.  We also check
358    __STDC__ and assume gcc sets it and has volatile in stage >=2.  */
359 #if !defined(HAVE_VOLATILE) && !defined(__STDC__) && !defined(volatile)
360 #define volatile
361 #endif
362
363 #if defined (HAVE_DECL_ABORT) && !HAVE_DECL_ABORT
364 extern void abort PARAMS ((void));
365 #endif
366
367 /* 1 if we have C99 designated initializers.  */
368 #if !defined(HAVE_DESIGNATED_INITIALIZERS)
369 #define HAVE_DESIGNATED_INITIALIZERS \
370   ((GCC_VERSION >= 2007) || (__STDC_VERSION__ >= 199901L))
371 #endif
372
373 /* 1 if we have _Bool.  */
374 #ifndef HAVE__BOOL
375 # define HAVE__BOOL \
376    ((GCC_VERSION >= 3000) || (__STDC_VERSION__ >= 199901L))
377 #endif
378
379
380 #if HAVE_SYS_STAT_H
381 # include <sys/stat.h>
382 #endif
383
384 /* Test if something is a normal file.  */
385 #ifndef S_ISREG
386 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
387 #endif
388
389 /* Test if something is a directory.  */
390 #ifndef S_ISDIR
391 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
392 #endif
393
394 /* Test if something is a character special file.  */
395 #ifndef S_ISCHR
396 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
397 #endif
398
399 /* Test if something is a block special file.  */
400 #ifndef S_ISBLK
401 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
402 #endif
403
404 /* Test if something is a socket.  */
405 #ifndef S_ISSOCK
406 # ifdef S_IFSOCK
407 #   define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
408 # else
409 #   define S_ISSOCK(m) 0
410 # endif
411 #endif
412
413 /* Test if something is a FIFO.  */
414 #ifndef S_ISFIFO
415 # ifdef S_IFIFO
416 #  define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
417 # else
418 #  define S_ISFIFO(m) 0
419 # endif
420 #endif
421
422 /* Approximate O_NONBLOCK.  */
423 #ifndef O_NONBLOCK
424 #define O_NONBLOCK O_NDELAY
425 #endif
426
427 /* Approximate O_NOCTTY.  */
428 #ifndef O_NOCTTY
429 #define O_NOCTTY 0
430 #endif
431
432 /* Define well known filenos if the system does not define them.  */
433 #ifndef STDIN_FILENO
434 # define STDIN_FILENO   0
435 #endif
436 #ifndef STDOUT_FILENO
437 # define STDOUT_FILENO  1
438 #endif
439 #ifndef STDERR_FILENO
440 # define STDERR_FILENO  2
441 #endif
442
443 /* Some systems have mkdir that takes a single argument.  */
444 #ifdef MKDIR_TAKES_ONE_ARG
445 # define mkdir(a,b) mkdir(a)
446 #endif
447
448 /* Provide a way to print an address via printf.  */
449 #ifndef HOST_PTR_PRINTF
450 # ifdef HAVE_PRINTF_PTR
451 #  define HOST_PTR_PRINTF "%p"
452 # else
453 #  define HOST_PTR_PRINTF \
454     (sizeof (int) == sizeof (char *) ? "%x" \
455      : sizeof (long) == sizeof (char *) ? "%lx" : "%llx")
456 # endif
457 #endif /* ! HOST_PTR_PRINTF */
458
459 /* By default, colon separates directories in a path.  */
460 #ifndef PATH_SEPARATOR
461 #define PATH_SEPARATOR ':'
462 #endif
463
464 #ifndef DIR_SEPARATOR
465 #define DIR_SEPARATOR '/'
466 #endif
467
468 /* Define IS_DIR_SEPARATOR.  */
469 #ifndef DIR_SEPARATOR_2
470 # define IS_DIR_SEPARATOR(CH) ((CH) == DIR_SEPARATOR)
471 #else /* DIR_SEPARATOR_2 */
472 # define IS_DIR_SEPARATOR(CH) \
473         (((CH) == DIR_SEPARATOR) || ((CH) == DIR_SEPARATOR_2))
474 #endif /* DIR_SEPARATOR_2 */
475
476 /* Say how to test for an absolute pathname.  On Unix systems, this is if
477    it starts with a leading slash or a '$', the latter meaning the value of
478    an environment variable is to be used.  On machine with DOS-based
479    file systems, it is also absolute if it starts with a drive identifier.  */
480 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
481 #define IS_ABSOLUTE_PATHNAME(STR) \
482   (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$' \
483    || ((STR)[0] != '\0' && (STR)[1] == ':' && IS_DIR_SEPARATOR ((STR)[2])))
484 #else
485 #define IS_ABSOLUTE_PATHNAME(STR) \
486   (IS_DIR_SEPARATOR ((STR)[0]) || (STR)[0] == '$')
487 #endif
488
489 /* Get libiberty declarations.  */
490 #include "libiberty.h"
491 #include "symcat.h"
492
493 /* Provide a default for the HOST_BIT_BUCKET.
494    This suffices for POSIX-like hosts.  */
495
496 #ifndef HOST_BIT_BUCKET
497 #define HOST_BIT_BUCKET "/dev/null"
498 #endif
499
500 /* Be conservative and only use enum bitfields with GCC.
501    FIXME: provide a complete autoconf test for buggy enum bitfields.  */
502
503 #if (GCC_VERSION > 2000)
504 #define ENUM_BITFIELD(TYPE) enum TYPE
505 #else
506 #define ENUM_BITFIELD(TYPE) unsigned int
507 #endif
508
509 #ifndef offsetof
510 #define offsetof(TYPE, MEMBER)  ((size_t) &((TYPE *) 0)->MEMBER)
511 #endif
512
513 /* Traditional C cannot initialize union members of structs.  Provide
514    a macro which expands appropriately to handle it.  This only works
515    if you intend to initialize the union member to zero since it relies
516    on default initialization to zero in the traditional C case.  */
517 #ifdef __STDC__
518 #define UNION_INIT_ZERO , {0}
519 #else
520 #define UNION_INIT_ZERO
521 #endif
522
523 /* Various error reporting routines want to use __FUNCTION__.  */
524 #if (GCC_VERSION < 2007)
525 #ifndef __FUNCTION__
526 #define __FUNCTION__ "?"
527 #endif /* ! __FUNCTION__ */
528 #endif
529
530 /* __builtin_expect(A, B) evaluates to A, but notifies the compiler that
531    the most likely value of A is B.  This feature was added at some point
532    between 2.95 and 3.0.  Let's use 3.0 as the lower bound for now.  */
533 #if (GCC_VERSION < 3000)
534 #define __builtin_expect(a, b) (a)
535 #endif
536
537 /* Provide some sort of boolean type.  We use stdbool.h if it's
538   available.  This must be after all inclusion of system headers,
539   as some of them will mess us up.  */
540 #undef bool
541 #undef true
542 #undef false
543 #undef TRUE
544 #undef FALSE
545
546 #ifdef HAVE_STDBOOL_H
547 # include <stdbool.h>
548 #else
549 # if !HAVE__BOOL
550 typedef char _Bool;
551 # endif
552 # define bool _Bool
553 # define true 1
554 # define false 0
555 #endif
556
557 #define TRUE true
558 #define FALSE false
559
560 /* As the last action in this file, we poison the identifiers that
561    shouldn't be used.  Note, luckily gcc-3.0's token-based integrated
562    preprocessor won't trip on poisoned identifiers that arrive from
563    the expansion of macros.  E.g. #define strrchr rindex, won't error
564    if rindex is poisoned after this directive is issued and later on
565    strrchr is called.
566
567    Note: We define bypass macros for the few cases where we really
568    want to use the libc memory allocation routines.  Otherwise we
569    insist you use the "x" versions from libiberty.  */
570
571 #define really_call_malloc malloc
572 #define really_call_calloc calloc
573 #define really_call_realloc realloc
574
575 #if defined(FLEX_SCANNER) || defined(YYBISON)
576 /* Flex and bison use malloc and realloc.  Yuk.  Note that this means
577    really_call_* cannot be used in a .l or .y file.  */
578 #define malloc xmalloc
579 #define realloc xrealloc
580 #endif
581
582 #if (GCC_VERSION >= 3000)
583
584 /* Note autoconf checks for prototype declarations and includes
585    system.h while doing so.  Only poison these tokens if actually
586    compiling gcc, so that the autoconf declaration tests for malloc
587    etc don't spuriously fail.  */
588 #ifdef IN_GCC
589 #undef calloc
590 #undef strdup
591  #pragma GCC poison calloc strdup
592
593 #if !defined(FLEX_SCANNER) && !defined(YYBISON)
594 #undef malloc
595 #undef realloc
596  #pragma GCC poison malloc realloc
597 #endif
598
599 /* Old target macros that have moved to the target hooks structure.  */
600  #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN                      \
601         FUNCTION_PROLOGUE FUNCTION_EPILOGUE                             \
602         FUNCTION_END_PROLOGUE FUNCTION_BEGIN_EPILOGUE                   \
603         DECL_MACHINE_ATTRIBUTES COMP_TYPE_ATTRIBUTES INSERT_ATTRIBUTES  \
604         VALID_MACHINE_DECL_ATTRIBUTE VALID_MACHINE_TYPE_ATTRIBUTE       \
605         SET_DEFAULT_TYPE_ATTRIBUTES SET_DEFAULT_DECL_ATTRIBUTES         \
606         MERGE_MACHINE_TYPE_ATTRIBUTES MERGE_MACHINE_DECL_ATTRIBUTES     \
607         MD_INIT_BUILTINS MD_EXPAND_BUILTIN ASM_OUTPUT_CONSTRUCTOR       \
608         ASM_OUTPUT_DESTRUCTOR SIGNED_CHAR_SPEC MAX_CHAR_TYPE_SIZE       \
609         WCHAR_UNSIGNED UNIQUE_SECTION SELECT_SECTION SELECT_RTX_SECTION \
610         ENCODE_SECTION_INFO STRIP_NAME_ENCODING ASM_GLOBALIZE_LABEL     \
611         ASM_OUTPUT_MI_THUNK
612
613 /* Other obsolete target macros, or macros that used to be in target
614    headers and were not used, and may be obsolete or may never have
615    been used.  */
616  #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG                    \
617         ASM_OUTPUT_EH_REGION_END ASM_OUTPUT_LABELREF_AS_INT                \
618         DOESNT_NEED_UNWINDER EH_TABLE_LOOKUP OBJC_SELECTORS_WITHOUT_LABELS \
619         OMIT_EH_TABLE EASY_DIV_EXPR IMPLICIT_FIX_EXPR                      \
620         LONGJMP_RESTORE_FROM_STACK MAX_INT_TYPE_SIZE ASM_IDENTIFY_GCC      \
621         STDC_VALUE TRAMPOLINE_ALIGN ASM_IDENTIFY_GCC_AFTER_SOURCE          \
622         SLOW_ZERO_EXTEND SUBREG_REGNO_OFFSET DWARF_LINE_MIN_INSTR_LENGTH   \
623         TRADITIONAL_RETURN_FLOAT NO_BUILTIN_SIZE_TYPE                      \
624         NO_BUILTIN_PTRDIFF_TYPE NO_BUILTIN_WCHAR_TYPE NO_BUILTIN_WINT_TYPE \
625         BLOCK_PROFILER BLOCK_PROFILER_CODE FUNCTION_BLOCK_PROFILER         \
626         FUNCTION_BLOCK_PROFILER_EXIT MACHINE_STATE_SAVE                    \
627         MACHINE_STATE_RESTORE SCCS_DIRECTIVE SECTION_ASM_OP                \
628         ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL ASM_OUTPUT_INTERNAL_LABEL
629
630 /* Hooks that are no longer used.  */
631  #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE   \
632         LANG_HOOKS_MARK_TREE
633
634 #endif /* IN_GCC */
635
636 /* Note: not all uses of the `index' token (e.g. variable names and
637    structure members) have been eliminated.  */
638 #undef bcopy
639 #undef bzero
640 #undef bcmp
641 #undef rindex
642  #pragma GCC poison bcopy bzero bcmp rindex
643
644 #endif /* GCC >= 3.0 */
645
646 #endif /* ! GCC_SYSTEM_H */