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/godump.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/godump.c')
-rw-r--r-- | gcc/godump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/godump.c b/gcc/godump.c index 01f8410..7566f4d 100644 --- a/gcc/godump.c +++ b/gcc/godump.c @@ -496,9 +496,9 @@ go_function_decl (tree decl) /* A global variable decl. */ static void -go_global_decl (tree decl, bool early) +go_global_decl (tree decl) { - real_debug_hooks->global_decl (decl, early); + real_debug_hooks->global_decl (decl); go_decl (decl); } |