diff options
author | Trevor Saunders <tbsaunde@tbsaunde.org> | 2015-08-11 22:39:37 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-08-11 22:39:37 +0000 |
commit | 63ab94b6d5d732161780c68fce775bd23f8e2a99 (patch) | |
tree | ce150cc07d1bbf63f91af92c51be9976c9032f53 /gcc/mode-switching.c | |
parent | 96d4df8b2e1870c2e21495f4354730ead07dbdbf (diff) | |
download | gcc-63ab94b6d5d732161780c68fce775bd23f8e2a99.zip gcc-63ab94b6d5d732161780c68fce775bd23f8e2a99.tar.gz gcc-63ab94b6d5d732161780c68fce775bd23f8e2a99.tar.bz2 |
replace several uses of the anon namespace with GCC_FINAL
gcc/ChangeLog:
2015-08-11 Trevor Saunders <tbsaunde@tbsaunde.org>
* compare-elim.c, dce.c, dse.c, gimple-ssa-isolate-paths.c,
gimple-ssa-strength-reduction.c, graphite.c, init-regs.c,
ipa-pure-const.c, ipa-visibility.c, ipa.c, mode-switching.c,
omp-low.c, reorg.c, sanopt.c, trans-mem.c, tree-eh.c,
tree-if-conv.c, tree-ssa-copyrename.c, tree-ssa-dce.c,
tree-ssa-dom.c, tree-ssa-dse.c, tree-ssa-forwprop.c,
tree-ssa-sink.c, tree-ssanames.c, tree-stdarg.c, tree-tailcall.c,
tree-vect-generic.c, tree.c, ubsan.c, var-tracking.c,
vtable-verify.c, web.c: Use GCC_FINAL instead of the anonymous
namespace.
From-SVN: r226793
Diffstat (limited to 'gcc/mode-switching.c')
-rw-r--r-- | gcc/mode-switching.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gcc/mode-switching.c b/gcc/mode-switching.c index 4529bc2..cd44f0b 100644 --- a/gcc/mode-switching.c +++ b/gcc/mode-switching.c @@ -854,9 +854,7 @@ optimize_mode_switching (void) #endif /* OPTIMIZE_MODE_SWITCHING */ -namespace { - -const pass_data pass_data_mode_switching = +static const pass_data pass_data_mode_switching = { RTL_PASS, /* type */ "mode_sw", /* name */ @@ -869,7 +867,7 @@ const pass_data pass_data_mode_switching = TODO_df_finish, /* todo_flags_finish */ }; -class pass_mode_switching : public rtl_opt_pass +class pass_mode_switching GCC_FINAL : public rtl_opt_pass { public: pass_mode_switching (gcc::context *ctxt) @@ -899,8 +897,6 @@ public: }; // class pass_mode_switching -} // anon namespace - rtl_opt_pass * make_pass_mode_switching (gcc::context *ctxt) { |