From 63ab94b6d5d732161780c68fce775bd23f8e2a99 Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Tue, 11 Aug 2015 22:39:37 +0000 Subject: replace several uses of the anon namespace with GCC_FINAL gcc/ChangeLog: 2015-08-11 Trevor Saunders * 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 --- gcc/mode-switching.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'gcc/mode-switching.c') 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) { -- cgit v1.1