From d01bd0b0f3b8f4c33c437ff10f0b949200627f56 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sun, 2 Oct 2022 16:42:32 +0200 Subject: 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. --- gcc/tree-cfg.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-cfg.cc') diff --git a/gcc/tree-cfg.cc b/gcc/tree-cfg.cc index ade66c5..09fa7b6 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; } -- cgit v1.1