diff options
author | Fred Fish <fnf@specifix.com> | 2001-12-09 07:29:46 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2001-12-09 07:29:46 +0000 |
commit | dcdf377d07688cfd313534711827cf5c72d5b013 (patch) | |
tree | a07a89cbe4f7fb02a5162387f0404711410340a8 /gdb/dwarf2read.c | |
parent | 4b3b90eb9af01c18cea0cd6df5885a6651228105 (diff) | |
download | gdb-dcdf377d07688cfd313534711827cf5c72d5b013.tar.gz |
Approved by Jim Blandy:
2001-12-08 Fred Fish <fnf@redhat.com>
* dwarf2read.c (TYPE_FLAG_VARARGS): Remove from here.
* gdbtypes.h (TYPE_FLAG_VARARGS): Add here and change value to
not collide with other flag bits.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 17d81f9c236..fc149cde799 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -474,10 +474,6 @@ struct field_info int nfnfields; }; -/* FIXME: Kludge to mark a varargs function type for C++ member function - argument processing. */ -#define TYPE_FLAG_VARARGS (1 << 10) - /* Dwarf2 has no clean way to discern C++ static and non-static member functions. G++ helps GDB by marking the first parameter for non-static member functions (which is the this pointer) as artificial. |