diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2014-09-04 18:04:14 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2014-09-04 18:04:14 +0000 |
commit | 9de41e5786e7b331c7bc283e3f09e47b5c942e8a (patch) | |
tree | a1475a4d1d9c293ad247466bba59dc257d5b9ce5 /gcc/sdbout.c | |
parent | c5a36850156812b5d2d3f1401307315feef0aed5 (diff) | |
download | gcc-9de41e5786e7b331c7bc283e3f09e47b5c942e8a.zip gcc-9de41e5786e7b331c7bc283e3f09e47b5c942e8a.tar.gz gcc-9de41e5786e7b331c7bc283e3f09e47b5c942e8a.tar.bz2 |
Revert incorrect merging of debug-early branch.
From-SVN: r214914
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index d81b184..7b6f457 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -119,7 +119,7 @@ static void sdbout_begin_block (unsigned int, unsigned int); static void sdbout_end_block (unsigned int, unsigned int); static void sdbout_source_line (unsigned int, const char *, int, bool); static void sdbout_end_epilogue (unsigned int, const char *); -static void sdbout_global_decl (tree, bool); +static void sdbout_global_decl (tree); static void sdbout_begin_prologue (unsigned int, const char *); static void sdbout_end_prologue (unsigned int, const char *); static void sdbout_begin_function (tree); @@ -142,6 +142,7 @@ static void sdbout_field_types (tree); static void sdbout_one_type (tree); static void sdbout_parms (tree); static void sdbout_reg_parms (tree); +static void sdbout_global_decl (tree); /* Random macros describing parts of SDB data. */ @@ -1421,7 +1422,7 @@ sdbout_reg_parms (tree parms) after compilation proper has finished. */ static void -sdbout_global_decl (tree decl, bool early ATTRIBUTE_UNUSED) +sdbout_global_decl (tree decl) { if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl) |