From: Andrew Pinski Date: Tue, 30 Apr 2024 16:44:52 +0000 (-0700) Subject: Fix the build: error message `quote` X-Git-Tag: basepoints/gcc-16~9476 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ff71f71a13f5ed423389d20ed34f3217e632777;p=thirdparty%2Fgcc.git Fix the build: error message `quote` The problem here is the quote mark is for English's possessiveness rather than a quote but the error message format detection is too simple so it warns which causes -Werror to fail. Committed as obvious after a quick build. gcc/ChangeLog: * tree-cfg.cc (verify_gimple_assign): Remove quote mark to shut up the warning. Signed-off-by: Andrew Pinski --- diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc index 1c5b7df8541..b2d47b72084 100644 --- a/gcc/tree-cfg.cc +++ b/gcc/tree-cfg.cc @@ -4842,7 +4842,7 @@ verify_gimple_assign (gassign *stmt) tree lhs = gimple_assign_lhs (stmt); if (is_gimple_reg (lhs)) { - error ("nontemporal store's lhs cannot be a gimple register"); + error ("nontemporal store lhs cannot be a gimple register"); debug_generic_stmt (lhs); return true; }