diff options
author | David Edelsohn <dje.gcc@gmail.com> | 2015-06-12 00:32:08 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2015-06-11 20:32:08 -0400 |
commit | 1b92614483f4393a90e4359c5b0365eb9d366927 (patch) | |
tree | 3b877fb8da7bde1165bf2b74e9c489be023118b6 /gcc | |
parent | 708146b3afe791ebf3e6947490977c5e869975b1 (diff) | |
download | gcc-1b92614483f4393a90e4359c5b0365eb9d366927.zip gcc-1b92614483f4393a90e4359c5b0365eb9d366927.tar.gz gcc-1b92614483f4393a90e4359c5b0365eb9d366927.tar.bz2 |
dbxout.c (xcoff_debug_hooks): Provide a function for register_main_translation_unit hook.
* dbxout.c (xcoff_debug_hooks): Provide a function for
register_main_translation_unit hook.
From-SVN: r224407
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/dbxout.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6dc1940..3504194 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2015-06-11 David Edelsohn <dje.gcc@gmail.com> + * dbxout.c (xcoff_debug_hooks): Provide a function for + register_main_translation_unit hook. + +2015-06-11 David Edelsohn <dje.gcc@gmail.com> + * config/rs6000/rs6000.c (rs6000_pre_atomic_barrier): Remove SYNC variants cases from switch. (rs6000_post_atomic_barrier): Same. diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 94fac42..a13d29d 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -419,6 +419,7 @@ const struct gcc_debug_hooks xcoff_debug_hooks = xcoffout_end_epilogue, debug_nothing_tree, /* begin_function */ xcoffout_end_function, + debug_nothing_tree, /* register_main_translation_unit */ debug_nothing_tree, /* function_decl */ dbxout_early_global_decl, /* early_global_decl */ dbxout_late_global_decl, /* late_global_decl */ |