From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10033 invoked by alias); 4 Aug 2015 13:15:25 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 10011 invoked by uid 89); 4 Aug 2015 13:15:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qk0-f172.google.com Received: from mail-qk0-f172.google.com (HELO mail-qk0-f172.google.com) (209.85.220.172) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 04 Aug 2015 13:15:19 +0000 Received: by qkdv3 with SMTP id v3so2867058qkd.3 for ; Tue, 04 Aug 2015 06:15:17 -0700 (PDT) X-Received: by 10.55.43.83 with SMTP id r80mr6492603qkh.11.1438694116927; Tue, 04 Aug 2015 06:15:16 -0700 (PDT) Received: from ?IPv6:2601:181:c000:c497:a2a8:cdff:fe3e:b48? ([2601:181:c000:c497:a2a8:cdff:fe3e:b48]) by smtp.googlemail.com with ESMTPSA id g123sm434431qhc.38.2015.08.04.06.15.15 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Aug 2015 06:15:16 -0700 (PDT) To: GCC Patches From: Nathan Sidwell Subject: [PTX] small cleanup Message-ID: <55C0BAE2.3080403@acm.org> Date: Tue, 04 Aug 2015 13:15:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------010907070307000401070109" X-SW-Source: 2015-08/txt/msg00184.txt.bz2 This is a multi-part message in MIME format. --------------010907070307000401070109 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 72 This removal of unused structure is now committed to trunk too. nathan --------------010907070307000401070109 Content-Type: text/x-patch; name="trunk-ptx-clean.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="trunk-ptx-clean.patch" Content-length: 832 2015-08-04 Nathan Sidwell * config/nvptx/nvptx.h (struct nvptx_pseudo_info): Delete. (machine_function): Remove pseudos field. Index: gcc/config/nvptx/nvptx.h =================================================================== --- gcc/config/nvptx/nvptx.h (revision 226539) +++ gcc/config/nvptx/nvptx.h (working copy) @@ -217,12 +217,6 @@ struct nvptx_args { #define LEGITIMATE_PIC_OPERAND_P(X) 1 -struct nvptx_pseudo_info -{ - int true_size; - int renumber; -}; - #if defined HOST_WIDE_INT struct GTY(()) machine_function { @@ -231,7 +225,6 @@ struct GTY(()) machine_function tree funtype; bool has_call_with_varargs; bool has_call_with_sc; - struct GTY((skip)) nvptx_pseudo_info *pseudos; HOST_WIDE_INT outgoing_stdarg_size; int ret_reg_mode; int punning_buffer_size; --------------010907070307000401070109--