]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-cfg: Fix a verification diagnostic typo [PR107121]
authorJakub Jelinek <jakub@redhat.com>
Sun, 2 Oct 2022 14:42:32 +0000 (16:42 +0200)
committerJakub Jelinek <jakub@redhat.com>
Thu, 3 Nov 2022 00:22:36 +0000 (01:22 +0100)
Obvious typo in diagnostics.

2022-10-02  Jakub Jelinek  <jakub@redhat.com>

PR tree-optimization/107121
* tree-cfg.cc (verify_gimple_call): Fix a typo in diagnostics,
DEFFERED_INIT -> DEFERRED_INIT.

(cherry picked from commit d01bd0b0f3b8f4c33c437ff10f0b949200627f56)

gcc/tree-cfg.cc

index e321d929fd0cd3dfe81b079674ece6d98f9c5af1..c0824e34802998a0ea4fa9caab4aa648a3f1d1e5 100644 (file)
@@ -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 ("%<DEFFERED_INIT%> calls should have same "
+           error ("%<DEFERRED_INIT%> calls should have same "
                   "constant size for the first argument and LHS");
            return true;
          }