aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.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 /gdb/defs.h
parent664f90a33173273f8b2d43508b48150ade0a1694 (diff)
downloadbinutils-1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc.zip
binutils-1ae0d051e5e31ea120a9f96d916c8cd9e505e4fc.tar.gz
binutils-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 'gdb/defs.h')
-rw-r--r--gdb/defs.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 2849429..089631c 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -271,15 +271,6 @@ struct cleanup
void *arg;
};
-/* Be conservative and use enum bitfields only with GCC.
- This is copied from gcc 3.3.1, system.h. */
-
-#if defined(__GNUC__) && (__GNUC__ >= 2)
-#define ENUM_BITFIELD(TYPE) enum TYPE
-#else
-#define ENUM_BITFIELD(TYPE) unsigned int
-#endif
-
/* vec.h-style vectors of strings want a typedef for char * . */
typedef char * char_ptr;