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/tree-ssa-forwprop.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'gcc/tree-ssa-forwprop.c') diff --git a/gcc/tree-ssa-forwprop.c b/gcc/tree-ssa-forwprop.c index ccfde5f..27aacc2 100644 --- a/gcc/tree-ssa-forwprop.c +++ b/gcc/tree-ssa-forwprop.c @@ -2075,9 +2075,7 @@ fwprop_ssa_val (tree name) /* Main entry point for the forward propagation and statement combine optimizer. */ -namespace { - -const pass_data pass_data_forwprop = +static const pass_data pass_data_forwprop = { GIMPLE_PASS, /* type */ "forwprop", /* name */ @@ -2090,7 +2088,7 @@ const pass_data pass_data_forwprop = TODO_update_ssa, /* todo_flags_finish */ }; -class pass_forwprop : public gimple_opt_pass +class pass_forwprop GCC_FINAL : public gimple_opt_pass { public: pass_forwprop (gcc::context *ctxt) @@ -2477,8 +2475,6 @@ pass_forwprop::execute (function *fun) return todoflags; } -} // anon namespace - gimple_opt_pass * make_pass_forwprop (gcc::context *ctxt) { -- cgit v1.1