]> 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>
Sun, 2 Oct 2022 14:42:32 +0000 (16:42 +0200)
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.

gcc/tree-cfg.cc

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