diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-12 20:09:33 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-12 20:09:33 +0000 |
commit | 7620bc82f9bea7049364fd459c390c8c0369ee22 (patch) | |
tree | 0bb3e5e55fd46a2be97eff3a0c7917d317863f13 /gcc/ubsan.c | |
parent | 8c6dc41cf72960678235a7a321c09e6211b6d595 (diff) | |
download | gcc-7620bc82f9bea7049364fd459c390c8c0369ee22.tar.gz |
Revert "replace several uses of the anon namespace with GCC_FINAL"
This reverts commit daa5a8a3cf9b04cd9af5544c61e12e6dca14f870.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226834 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ubsan.c')
-rw-r--r-- | gcc/ubsan.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ubsan.c b/gcc/ubsan.c index e88c367cc99..7983c930c66 100644 --- a/gcc/ubsan.c +++ b/gcc/ubsan.c @@ -1896,7 +1896,9 @@ do_ubsan_in_current_function () DECL_ATTRIBUTES (current_function_decl))); } -static const pass_data pass_data_ubsan = +namespace { + +const pass_data pass_data_ubsan = { GIMPLE_PASS, /* type */ "ubsan", /* name */ @@ -1909,7 +1911,7 @@ static const pass_data pass_data_ubsan = TODO_update_ssa, /* todo_flags_finish */ }; -class pass_ubsan GCC_FINAL : public gimple_opt_pass +class pass_ubsan : public gimple_opt_pass { public: pass_ubsan (gcc::context *ctxt) @@ -1999,6 +2001,8 @@ pass_ubsan::execute (function *fun) return 0; } +} // anon namespace + gimple_opt_pass * make_pass_ubsan (gcc::context *ctxt) { |