diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-03 20:09:49 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-03 20:09:49 +0000 |
commit | 836bf45453d96e2e4020982e1a44e22498d766fa (patch) | |
tree | 7d7a676aa25688a006340c09eea9f90bdd323fd0 | |
parent | 5f8ebec53d47aacc4dc1d67f3c9b0117539b2468 (diff) | |
download | gdb-836bf45453d96e2e4020982e1a44e22498d766fa.zip gdb-836bf45453d96e2e4020982e1a44e22498d766fa.tar.gz gdb-836bf45453d96e2e4020982e1a44e22498d766fa.tar.bz2 |
gdb/
Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
* dwarf2expr.h: Include gdbtypes.h.
(enum call_site_parameter_kind, union call_site_parameter_u): Remove
these forward declarations.
(cu_offset, sect_offset): Move these ...
* gdbtypes.h: Remove include dwarf2expr.h.
(cu_offset, sect_offset): ... here.
-rw-r--r-- | gdb/ChangeLog | 10 | ||||
-rw-r--r-- | gdb/dwarf2expr.h | 15 | ||||
-rw-r--r-- | gdb/gdbtypes.h | 16 |
3 files changed, 26 insertions, 15 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7ba59f4..1d8fba1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,13 @@ +2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com> + + Fix 'warning: parameter has incomplete type' with gcc-3.4.6. + * dwarf2expr.h: Include gdbtypes.h. + (enum call_site_parameter_kind, union call_site_parameter_u): Remove + these forward declarations. + (cu_offset, sect_offset): Move these ... + * gdbtypes.h: Remove include dwarf2expr.h. + (cu_offset, sect_offset): ... here. + 2012-07-03 H.J. Lu <hongjiu.lu@intel.com> * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ... diff --git a/gdb/dwarf2expr.h b/gdb/dwarf2expr.h index db49b9c..19efbfd 100644 --- a/gdb/dwarf2expr.h +++ b/gdb/dwarf2expr.h @@ -24,22 +24,9 @@ #define DWARF2EXPR_H #include "leb128.h" +#include "gdbtypes.h" struct dwarf_expr_context; -enum call_site_parameter_kind; -union call_site_parameter_u; - -/* Offset relative to the start of its containing CU (compilation unit). */ -typedef struct -{ - unsigned int cu_off; -} cu_offset; - -/* Offset relative to the start of its .debug_info or .debug_types section. */ -typedef struct -{ - unsigned int sect_off; -} sect_offset; /* Virtual method table for struct dwarf_expr_context below. */ diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index cf7d398..3b4edea 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -23,7 +23,6 @@ #define GDBTYPES_H 1 #include "hashtab.h" -#include "dwarf2expr.h" /* Forward declarations for prototypes. */ struct field; @@ -31,6 +30,21 @@ struct block; struct value_print_options; struct language_defn; +/* These declarations are DWARF-specific as some of the gdbtypes.h data types + are already DWARF-specific. */ + +/* Offset relative to the start of its containing CU (compilation unit). */ +typedef struct +{ + unsigned int cu_off; +} cu_offset; + +/* Offset relative to the start of its .debug_info or .debug_types section. */ +typedef struct +{ + unsigned int sect_off; +} sect_offset; + /* Some macros for char-based bitfields. */ #define B_SET(a,x) ((a)[(x)>>3] |= (1 << ((x)&7))) |