summaryrefslogtreecommitdiff
path: root/gcc/sanopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/sanopt.c')
-rw-r--r--gcc/sanopt.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/sanopt.c b/gcc/sanopt.c
index dcb3659b0a6..269c11d31a7 100644
--- a/gcc/sanopt.c
+++ b/gcc/sanopt.c
@@ -621,7 +621,9 @@ sanopt_optimize (function *fun)
/* Perform optimization of sanitize functions. */
-static const pass_data pass_data_sanopt =
+namespace {
+
+const pass_data pass_data_sanopt =
{
GIMPLE_PASS, /* type */
"sanopt", /* name */
@@ -634,7 +636,7 @@ static const pass_data pass_data_sanopt =
TODO_update_ssa, /* todo_flags_finish */
};
-class pass_sanopt GCC_FINAL : public gimple_opt_pass
+class pass_sanopt : public gimple_opt_pass
{
public:
pass_sanopt (gcc::context *ctxt)
@@ -743,6 +745,8 @@ pass_sanopt::execute (function *fun)
return 0;
}
+} // anon namespace
+
gimple_opt_pass *
make_pass_sanopt (gcc::context *ctxt)
{