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/vmsdbgout.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/vmsdbgout.c')
-rw-r--r-- | gcc/vmsdbgout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/vmsdbgout.c b/gcc/vmsdbgout.c index 2ad9e9b..463a418 100644 --- a/gcc/vmsdbgout.c +++ b/gcc/vmsdbgout.c @@ -163,7 +163,7 @@ static void vmsdbgout_begin_epilogue (unsigned int, const char *); static void vmsdbgout_end_epilogue (unsigned int, const char *); static void vmsdbgout_begin_function (tree); static void vmsdbgout_decl (tree); -static void vmsdbgout_global_decl (tree, bool); +static void vmsdbgout_global_decl (tree); static void vmsdbgout_type_decl (tree, int); static void vmsdbgout_abstract_function (tree); @@ -1510,10 +1510,10 @@ vmsdbgout_decl (tree decl) /* Not implemented in VMS Debug. */ static void -vmsdbgout_global_decl (tree decl, bool early) +vmsdbgout_global_decl (tree decl) { if (write_symbols == VMS_AND_DWARF2_DEBUG) - (*dwarf2_debug_hooks.global_decl) (decl, early); + (*dwarf2_debug_hooks.global_decl) (decl); } /* Not implemented in VMS Debug. */ |