From: Filip Kastl Date: Sat, 4 Jul 2026 06:01:03 +0000 (+0200) Subject: i386.cc: Add a missing override specifier X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c36ceaacc080a70f3f664a2eb5f9b32227f5cf5;p=thirdparty%2Fgcc.git i386.cc: Add a missing override specifier When compiling i386.cc, Clang complains that better_epilogue_loop_than_p is not marked override. Add the specifier. Bootstrapped on x86_64 linux. Committed as obvious. gcc/ChangeLog: * config/i386/i386.cc: Add override specifier for better_epilogue_loop_than_p. Signed-off-by: Filip Kastl --- diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc index e66958db7ac..c7ac2cc811b 100644 --- a/gcc/config/i386/i386.cc +++ b/gcc/config/i386/i386.cc @@ -26168,7 +26168,7 @@ public: void finish_cost (const vector_costs *) override; bool better_main_loop_than_p (const vector_costs *) const override; bool better_epilogue_loop_than_p (const vector_costs *other, - loop_vec_info main_loop) const; + loop_vec_info main_loop) const override; private: