From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg1-x530.google.com (mail-pg1-x530.google.com [IPv6:2607:f8b0:4864:20::530]) by sourceware.org (Postfix) with ESMTPS id 8CACA3A9DC2A for ; Wed, 28 Apr 2021 16:04:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 8CACA3A9DC2A Received: by mail-pg1-x530.google.com with SMTP id y32so45047415pga.11 for ; Wed, 28 Apr 2021 09:04:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding :content-language; bh=UaXtvpJ4xxFDrSgk7ZWxdeQR4YGu0L8VVsjcHvNjbGY=; b=GJtUfuyxWMobt+z4y3OLT5vhLtillyKF/9gdWgLdljB/JK+ZcskRh6iCHCOG22CUk4 lwpgQzB4dXqLkXrd3q8fVSc6urt+TmpK3eurp1DhMqRo8dk2wvF2Zys/ojhUxB6/dd6D UHuT2ljXU+9hnVQYm7FZD4MXJYVi1Ya7dSQWmOPU+z3ymSs0VtPt1CV7sPnUiw2BPUbV bjCDoejswguCrTu/UtNbJar24EWGEVRFa2LsdhPp2SKgExnWSxgVdTrYpucdk4aj+DTj s2JSerYOtB/eXR0mXaENjBM5CeKIHTRjhqhoKQL1hBFTW/EQF6oXMtQCnxp7ObMqyXnC qABg== X-Gm-Message-State: AOAM532sal3z19hiIZH15JLGuz321IAQG3KIl9STW74oR1dnu5wSs4f9 bJgtIHbp0z2srsAcRkB26IGUiV8tp0TlOg== X-Google-Smtp-Source: ABdhPJzGNoF1oHGyo6Gn9Y+QcJ9j8GWpfNKRhiZLv/a6tW2taCuuds4gTrv1NXSpaxl7ggLBSW5rkg== X-Received: by 2002:a65:6a07:: with SMTP id m7mr27569243pgu.136.1619625880374; Wed, 28 Apr 2021 09:04:40 -0700 (PDT) Received: from [192.168.1.29] (65-130-82-141.slkc.qwest.net. [65.130.82.141]) by smtp.gmail.com with ESMTPSA id h9sm144331pgl.67.2021.04.28.09.04.39 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 28 Apr 2021 09:04:40 -0700 (PDT) Subject: Re: [PATCH v2 12/21] libcc1: use foreach To: Tom Tromey , gcc-patches@gcc.gnu.org References: <20210428010119.806184-1-tom@tromey.com> <20210428010119.806184-13-tom@tromey.com> From: Jeff Law Message-ID: <23f4f2e9-d4c5-9a3e-544b-a8f640af3c3a@gmail.com> Date: Wed, 28 Apr 2021 10:04:39 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.9.1 MIME-Version: 1.0 In-Reply-To: <20210428010119.806184-13-tom@tromey.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, URIBL_CSS, URIBL_CSS_A autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Wed, 28 Apr 2021 16:04:42 -0000 On 4/27/2021 7:01 PM, Tom Tromey wrote: > This changes libcc1 to ues foreach in a couple of spots. > > libcc1/ChangeLog > 2021-04-27 Tom Tromey > > * libcp1plugin.cc (plugin_context::mark): Use foreach. > * libcc1plugin.cc (plugin_context::mark): Use foreach. OK jeff