From: Jakub Jelinek Date: Sun, 2 Oct 2022 14:42:32 +0000 (+0200) Subject: tree-cfg: Fix a verification diagnostic typo [PR107121] X-Git-Tag: release-12.2.mpacbti-rel1~308 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d5e6cd2d3f00d463705a5046b2920680a0ab7a9;p=thirdparty%2Fgcc.git tree-cfg: Fix a verification diagnostic typo [PR107121] Obvious typo in diagnostics. 2022-10-02 Jakub Jelinek PR tree-optimization/107121 * tree-cfg.cc (verify_gimple_call): Fix a typo in diagnostics, DEFFERED_INIT -> DEFERRED_INIT. (cherry picked from commit d01bd0b0f3b8f4c33c437ff10f0b949200627f56) --- diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc index e321d929fd0c..c0824e348029 100644 --- a/gcc/tree-cfg.cc +++ b/gcc/tree-cfg.cc @@ -3475,7 +3475,7 @@ verify_gimple_call (gcall *stmt) if (is_constant_size_arg0 && is_constant_size_lhs) if (maybe_ne (size_from_arg0, size_from_lhs)) { - error ("% calls should have same " + error ("% calls should have same " "constant size for the first argument and LHS"); return true; }