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: basepoints/gcc-14~4187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d01bd0b0f3b8f4c33c437ff10f0b949200627f56;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. --- diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc index ade66c54499f..09fa7b645843 100644 --- a/gcc/tree-cfg.cc +++ b/gcc/tree-cfg.cc @@ -3510,7 +3510,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; }