From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua1-x936.google.com (mail-ua1-x936.google.com [IPv6:2607:f8b0:4864:20::936]) by sourceware.org (Postfix) with ESMTPS id 76B6E385AC1B for ; Tue, 14 Dec 2021 18:08:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 76B6E385AC1B Received: by mail-ua1-x936.google.com with SMTP id 30so36311976uag.13 for ; Tue, 14 Dec 2021 10:08:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=FzQ0ELgzFgI1Lf6iY6r825wgh/4Uie/kVKEP1Ciayi0=; b=t5DlntX3beDSicVGDOAF/u1K0TlwzfXzwMTnq6/L3WeRHfK5QdSJpNAf6hQkgW6tU3 mrDVTMGoMo4uYTnXHxzA5Qga1o68DyhgZC1GR4nJEI1gEG4bQttj3Q9Xp4DuwgzSINBd utGutcKObO1Y/mydyxlBQIyxZmAuxRXez0zkeUc508tA80xfZNwzKOw/GGn+SZiZ9q5I PWc2txxivAkf3+t1c0jch2iMZADpaFLZKcwutRgDWAcxj8kn+4y76emR8wbH0c3n7kd1 VK26Wahimq9butk6AqTKp0nze+zv1RBW7qBGuuSoujDH99QgnybgWOJBI5cNktvtSKKh bWDw== X-Gm-Message-State: AOAM531Mrh2bRKrRygsPkX4X6Ocw/Vcgvu4Dr+YeQ4bDl7jhdxdfyiyR q0GukNDIB1ADV2WXw2QzOi4Yv+DcgRTO8aD7id0= X-Google-Smtp-Source: ABdhPJw7tg6SabB11lDIXYv7r3GXMOe1ym3f3sZeVjFhq9VwXlmUqpcAYDyxRrthP3VtvH8/AA5eLXrAelhKdphshKQ= X-Received: by 2002:a05:6102:e0f:: with SMTP id o15mr446507vst.51.1639505296016; Tue, 14 Dec 2021 10:08:16 -0800 (PST) MIME-Version: 1.0 References: <3ab6f894048e5f49252a1ea18eeca60843fbe0d3.1638820430.git.wschmidt@linux.ibm.com> In-Reply-To: <3ab6f894048e5f49252a1ea18eeca60843fbe0d3.1638820430.git.wschmidt@linux.ibm.com> From: David Edelsohn Date: Tue, 14 Dec 2021 13:08:04 -0500 Message-ID: Subject: Re: [PATCH 4/6] rs6000: Remove rs6000-builtin.def and associated data and functions To: Bill Schmidt Cc: GCC Patches , Segher Boessenkool Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2021 18:08:18 -0000 On Mon, Dec 6, 2021 at 3:49 PM Bill Schmidt wrote: > > Hi! > > The old rs6000-builtin.def file is no longer needed. Remove it and the code > that depends on it. > > Bootstrapped and tested on powerpc64le-linux-gnu with no regressions. Is this > okay for trunk? > > Thanks! > Bill > > 2021-12-02 Bill Schmidt > > gcc/ > * config/rs6000/rs6000-builtin.def: Delete. > * config/rs6000/rs6000-call.c (builtin_compatibility): Delete. > (builtin_description): Delete. > (builtin_hash_struct): Delete. > (builtin_hasher): Delete. > (builtin_hash_table): Delete. > (builtin_hasher::hash): Delete. > (builtin_hasher::equal): Delete. > (rs6000_builtin_info_type): Delete. > (rs6000_builtin_info): Delete. > (bdesc_compat): Delete. > (bdesc_3arg): Delete. > (bdesc_4arg): Delete. > (bdesc_dst): Delete. > (bdesc_2arg): Delete. > (bdesc_altivec_preds): Delete. > (bdesc_abs): Delete. > (bdesc_1arg): Delete. > (bdesc_0arg): Delete. > (bdesc_htm): Delete. > (bdesc_mma): Delete. > (rs6000_overloaded_builtin_p): Delete. > (rs6000_overloaded_builtin_name): Delete. > (htm_spr_num): Delete. > (rs6000_builtin_is_supported_p): Delete. > (rs6000_gimple_fold_mma_builtin): Delete. > (gt-rs6000-call.h): Remove include directive. > * config/rs6000/rs6000-protos.h (rs6000_overloaded_builtin_p): Delete. > (rs6000_builtin_is_supported_p): Delete. > (rs6000_overloaded_builtin_name): Delete. > * config/rs6000/rs6000.c (rs6000_builtin_decls): Delete. > (rs6000_debug_reg_global): Remove reference to RS6000_BUILTIN_COUNT. > * config/rs6000/rs6000.h (rs6000_builtins): Delete. > (altivec_builtin_types): Delete. > (rs6000_builtin_decls): Delete. > * config/rs6000/t-rs6000 (TM_H): Don't add rs6000-builtin.def. Okay. Thanks, David