]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix the build: error message `quote`
authorAndrew Pinski <quic_apinski@quicinc.com>
Tue, 30 Apr 2024 16:44:52 +0000 (09:44 -0700)
committerAndrew Pinski <quic_apinski@quicinc.com>
Tue, 30 Apr 2024 16:47:57 +0000 (09:47 -0700)
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 <quic_apinski@quicinc.com>
gcc/tree-cfg.cc

index 1c5b7df8541edb0cd47d34b4253e2ba9b63c75d0..b2d47b720847b1b867aaa85cc3d6a0217cb9af74 100644 (file)
@@ -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;
        }