diff options
author | Gaius Mulley <gaius.mulley@southwales.ac.uk> | 2022-07-06 20:04:26 +0100 |
---|---|---|
committer | Gaius Mulley <gaius.mulley@southwales.ac.uk> | 2022-07-06 20:04:26 +0100 |
commit | d0e4bdcd7952930e9e542389fc19b5cbcf4b5ef2 (patch) | |
tree | 4d61aee2af551cea2a1d33c0f60f73b997e805e8 /gcc/gimple-loop-interchange.cc | |
parent | 9109c9ebe2922d879da44c6c4da45f370d712744 (diff) | |
download | gcc-d0e4bdcd7952930e9e542389fc19b5cbcf4b5ef2.zip gcc-d0e4bdcd7952930e9e542389fc19b5cbcf4b5ef2.tar.gz gcc-d0e4bdcd7952930e9e542389fc19b5cbcf4b5ef2.tar.bz2 |
Merge branch 'master' into devel/modula-2.
Signed-off-by: Gaius Mulley <gaius.mulley@southwales.ac.uk>
Diffstat (limited to 'gcc/gimple-loop-interchange.cc')
-rw-r--r-- | gcc/gimple-loop-interchange.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gimple-loop-interchange.cc b/gcc/gimple-loop-interchange.cc index d5d690b..71772b6 100644 --- a/gcc/gimple-loop-interchange.cc +++ b/gcc/gimple-loop-interchange.cc @@ -1705,9 +1705,9 @@ public: {} /* opt_pass methods: */ - opt_pass * clone () { return new pass_linterchange (m_ctxt); } - virtual bool gate (function *) { return flag_loop_interchange; } - virtual unsigned int execute (function *); + opt_pass * clone () final override { return new pass_linterchange (m_ctxt); } + bool gate (function *) final override { return flag_loop_interchange; } + unsigned int execute (function *) final override; }; // class pass_linterchange |