Hi! I've noticed duplicated word in a comment, fixed thusly.
Bootstrapped/regtested on x86_64-linux and i686-linux, committed to trunk as obvious. 2024-10-31 Jakub Jelinek <ja...@redhat.com> * tree.cc (valid_new_delete_pair_p): Fix up duplicate "or or" in comment. --- gcc/tree.cc.jj 2024-10-30 07:57:04.036729957 +0100 +++ gcc/tree.cc 2024-10-30 18:23:21.037297930 +0100 @@ -15081,7 +15081,7 @@ valid_new_delete_pair_p (tree new_asm, t && !memcmp (new_name + 4, "St11align_val_tRKSt9nothrow_t", 29))) { /* _ZnXYSt11align_val_t or _ZnXYSt11align_val_tRKSt9nothrow_t matches - _ZdXPvSt11align_val_t or _ZdXPvYSt11align_val_t or or + _ZdXPvSt11align_val_t or _ZdXPvYSt11align_val_t or _ZdXPvSt11align_val_tRKSt9nothrow_t. */ if (delete_len == 20 && !memcmp (delete_name + 5, "St11align_val_t", 15)) return true; Jakub