aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <quic_apinski@quicinc.com>2024-04-30 09:44:52 -0700
committerAndrew Pinski <quic_apinski@quicinc.com>2024-04-30 09:47:57 -0700
commit1ff71f71a13f5ed423389d20ed34f3217e632777 (patch)
treec5db17a238692954c1c8b6d5a29a1f6aa7ed4b0b
parenta30d2e6bd0b965e7687f58530a767a3c3b079158 (diff)
downloadgcc-1ff71f71a13f5ed423389d20ed34f3217e632777.zip
gcc-1ff71f71a13f5ed423389d20ed34f3217e632777.tar.gz
gcc-1ff71f71a13f5ed423389d20ed34f3217e632777.tar.bz2
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 <quic_apinski@quicinc.com>
-rw-r--r--gcc/tree-cfg.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc
index 1c5b7df..b2d47b7 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;
}