From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 03BA43830B19 for ; Tue, 15 Nov 2022 07:32:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 03BA43830B19 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1668497560; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type; bh=+Q4txVV/KNbRSmravpG6WZm47QDygjTZosbhm5+kFV8=; b=UOg547pL4vUQt/yeyx9K7x7Gv4nZWjf+0U2XRZ/yBdRukF48iOvFkEOf+B0IHaZQZdV2uB lXCofsvCOzVyDv2OscknSkuPBJUvXZb2NRhT5WlDp/V0lxhOCDlzH/p8TwyQFGcb0ZMGhT JU5Oy2r8/D7esub+Ywg/sXCr3gTL5ew= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-497-hm5O9uv3PVi_CU_HTg87cA-1; Tue, 15 Nov 2022 02:32:37 -0500 X-MC-Unique: hm5O9uv3PVi_CU_HTg87cA-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id CE4F23C025A2 for ; Tue, 15 Nov 2022 07:32:36 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.192.38]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 909BB40C6EC3 for ; Tue, 15 Nov 2022 07:32:36 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.17.1/8.17.1) with ESMTPS id 2AF7WWFb520849 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT) for ; Tue, 15 Nov 2022 08:32:32 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 2AF7WV2d520848 for gcc-patches@gcc.gnu.org; Tue, 15 Nov 2022 08:32:31 +0100 Date: Tue, 15 Nov 2022 08:32:31 +0100 From: Jakub Jelinek To: gcc-patches@gcc.gnu.org Subject: [committed] c++: Fix a typo in function name Message-ID: Reply-To: Jakub Jelinek MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-3.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi! I've noticed I've made a typo in the name of the function. Fixed thusly. Bootstrapped/regtested on x86_64-linux and i686-linux, committed as obvious to trunk. 2022-11-15 Jakub Jelinek * cp-tree.h (next_common_initial_seqence): Rename to ... (next_common_initial_sequence): ... this. * typeck.cc (next_common_initial_seqence): Rename to ... (next_common_initial_sequence): ... this. (layout_compatible_type_p): Call next_common_initial_sequence rather than next_common_initial_seqence. * semantics.cc (is_corresponding_member_aggr): Likewise. --- gcc/cp/cp-tree.h.jj 2022-11-14 13:35:34.311158621 +0100 +++ gcc/cp/cp-tree.h 2022-11-14 13:41:29.817322405 +0100 @@ -7982,7 +7982,7 @@ extern bool comp_except_specs (const_t extern bool comptypes (tree, tree, int); extern bool same_type_ignoring_top_level_qualifiers_p (tree, tree); extern bool similar_type_p (tree, tree); -extern bool next_common_initial_seqence (tree &, tree &); +extern bool next_common_initial_sequence (tree &, tree &); extern bool layout_compatible_type_p (tree, tree); extern bool compparms (const_tree, const_tree); extern int comp_cv_qualification (const_tree, const_tree); --- gcc/cp/typeck.cc.jj 2022-11-14 13:35:34.474156404 +0100 +++ gcc/cp/typeck.cc 2022-11-14 13:42:07.328812124 +0100 @@ -1779,7 +1779,7 @@ similar_type_p (tree type1, tree type2) the common initial sequence. */ bool -next_common_initial_seqence (tree &memb1, tree &memb2) +next_common_initial_sequence (tree &memb1, tree &memb2) { while (memb1) { @@ -1871,7 +1871,7 @@ layout_compatible_type_p (tree type1, tr { while (1) { - if (!next_common_initial_seqence (field1, field2)) + if (!next_common_initial_sequence (field1, field2)) return false; if (field1 == NULL_TREE) return true; --- gcc/cp/semantics.cc.jj 2022-11-14 13:35:34.429157016 +0100 +++ gcc/cp/semantics.cc 2022-11-14 13:41:47.930076022 +0100 @@ -11665,7 +11665,7 @@ is_corresponding_member_aggr (location_t tree ret = boolean_false_node; while (1) { - bool r = next_common_initial_seqence (field1, field2); + bool r = next_common_initial_sequence (field1, field2); if (field1 == NULL_TREE || field2 == NULL_TREE) break; if (r Jakub