aboutsummaryrefslogtreecommitdiff
path: root/include/ansidecl.h
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-04-25 18:28:53 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-04-25 18:28:53 +0000
commit1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc (patch)
tree21968acc538eb1eec61510eefe9b8744ecfe3478 /include/ansidecl.h
parent664f90a33173273f8b2d43508b48150ade0a1694 (diff)
downloadfsf-binutils-gdb-1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc.zip
fsf-binutils-gdb-1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc.tar.gz
fsf-binutils-gdb-1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc.tar.bz2
gdb/
* defs.h (ENUM_BITFIELD): Remove. include/ * bfdlink.h (ENUM_BITFIELD): Remove. merge from gcc: include/ * ansidecl.h (ENUM_BITFIELD): New, from gcc/system.h.
Diffstat (limited to 'include/ansidecl.h')
-rw-r--r--include/ansidecl.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/ansidecl.h b/include/ansidecl.h
index 8b76647..c39ce2f 100644
--- a/include/ansidecl.h
+++ b/include/ansidecl.h
@@ -416,6 +416,15 @@ So instead we use the macro below and test it against specific values. */
#define EXPORTED_CONST const
#endif
+/* Be conservative and only use enum bitfields with GCC.
+ FIXME: provide a complete autoconf test for buggy enum bitfields. */
+
+#if (GCC_VERSION > 2000)
+#define ENUM_BITFIELD(TYPE) __extension__ enum TYPE
+#else
+#define ENUM_BITFIELD(TYPE) unsigned int
+#endif
+
#ifdef __cplusplus
}
#endif