OSDN Git Service

* xtensa-config.h: Undef all macros before defining them.
[pf3gnuchains/gcc-fork.git] / gcc / acconfig.h
1 /* Define if your assembler supports specifying the maximum number
2    of bytes to skip when using the GAS .p2align command.  */
3 #undef HAVE_GAS_MAX_SKIP_P2ALIGN
4
5 /* Define if your assembler supports .balign and .p2align.  */
6 #undef HAVE_GAS_BALIGN_AND_P2ALIGN
7
8 /* Define if your assembler uses the old HImode fild and fist notation.  */
9 #undef HAVE_GAS_FILDS_FISTS
10
11 /* Define to `int' if <sys/types.h> doesn't define.  */
12 #undef ssize_t
13
14 /* Define if cpp should also search $prefix/include.  */
15 #undef PREFIX_INCLUDE_DIR
16
17 @BOTTOM@
18
19 /* Bison unconditionally undefines `const' if neither `__STDC__' nor
20    __cplusplus are defined.  That's a problem since we use `const' in
21    the GCC headers, and the resulting bison code is therefore type
22    unsafe.  Thus, we must match the bison behavior here.  */
23
24 #ifndef __STDC__
25 #ifndef __cplusplus
26 #undef const
27 #define const
28 #endif
29 #endif