diff options
| author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-12-02 13:43:10 +0000 |
|---|---|---|
| committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-12-02 13:43:10 +0000 |
| commit | 710af8993d78c5d2989f0e2f3a7f46257aef0259 (patch) | |
| tree | f2fdb062d193a675e3ad67289a66d5754ba72f51 /gcc/dwarf2out.c | |
| parent | a1f04b2e517d84bd0c3dd1d25148acade323b69b (diff) | |
| download | gcc-710af8993d78c5d2989f0e2f3a7f46257aef0259.zip gcc-710af8993d78c5d2989f0e2f3a7f46257aef0259.tar.gz gcc-710af8993d78c5d2989f0e2f3a7f46257aef0259.tar.bz2 | |
cfgrtl.c (purge_all_dead_edges): Initialize variable.
* cfgrtl.c (purge_all_dead_edges): Initialize variable.
* dwarf2out.c (is_cxx): Prototype.
* local-alloc.c (block_alloc): Avoid 'unsigned>=0 is always true'
warning.
* objc/objc-act.c (defer_fn): Avoid signed/unsigned warning.
From-SVN: r47528
Diffstat (limited to 'gcc/dwarf2out.c')
| -rw-r--r-- | gcc/dwarf2out.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 557730d..7d2ea7b 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -3459,6 +3459,7 @@ static unsigned get_AT_unsigned PARAMS ((dw_die_ref, static inline dw_die_ref get_AT_ref PARAMS ((dw_die_ref, enum dwarf_attribute)); static int is_c_family PARAMS ((void)); +static int is_cxx PARAMS ((void)); static int is_java PARAMS ((void)); static int is_fortran PARAMS ((void)); static void remove_AT PARAMS ((dw_die_ref, |
