From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40720 invoked by alias); 25 Feb 2020 22:03:55 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 40712 invoked by uid 89); 25 Feb 2020 22:03:55 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: =?ISO-8859-1?Q?No, score=-3.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,HTML_MESSAGE,HTML_OBFUSCATE_10_20,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.1 spammy=by, Enter, in=c2, and=c2?= X-HELO: mail-qk1-f171.google.com Received: from mail-qk1-f171.google.com (HELO mail-qk1-f171.google.com) (209.85.222.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 25 Feb 2020 22:03:53 +0000 Received: by mail-qk1-f171.google.com with SMTP id e16so733696qkl.6 for ; Tue, 25 Feb 2020 14:03:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:subject:message-id:date:user-agent:mime-version :content-language; bh=ZDtCIBnORFj103ZihOSJxKJALW0XK+Gkdhl6MrAd1VY=; b=UpV6GEvX3A2gAEJX6OkuqgxIgsoHzy7ouuDxaRUnscdSbXK5aDHmv790IMP8GvvSZ8 las0vA9V/g3YBsOryPsYRwta+2MN2h9XpB38xadve2lJj/5MoxcS+SC0nnhTdwPUYVIj 32KLskeQXp3iW67ygcleLT/YO2KQmiEC6K6NhtNjxqDqO5o/RbghY6lcKF903SEEeKKR bytFs1fwFv407AvX0zIYBCXzMTLIVFcgfttF3MDa/lWYa5LMoNid5PTkw3g79W2/Enkt zB6NTIyZND7pCKpaIMRMkA9+Q4/FfZkP9ErpDmhot6Clf8GdPct3u4urIBy/EQzvESBs 0YHA== Return-Path: Received: from [192.168.1.103] (173-230-163-45.cable.teksavvy.com. [173.230.163.45]) by smtp.gmail.com with ESMTPSA id b5sm1397464qkg.110.2020.02.25.14.03.50 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 25 Feb 2020 14:03:51 -0800 (PST) To: gcc Mailing List From: Nicholas Krause Subject: Typo in Tree SSA Passes Message-ID: Date: Tue, 25 Feb 2020 22:03:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2020-02/txt/msg00199.txt.bz2 Greetings, Not sure who to contact but at the manual page: https://gcc.gnu.org/onlinedocs/gccint/Tree-SSA-passes.html#Tree-SSA-passes Enter static single assignment form This pass rewrites the function such that it is in SSA form. After this pass, all|is_gimple_reg|variables will be referenced by|SSA_NAME|, and all occurrences of other variables will be annotated with|VDEFS|and|VUSES|; PHI nodes will have been inserted as necessary for each basic block. This pass is located intree-ssa.cand is described by|pass_build_ssa|. The pass seems to be in tree-into-ssa.c these days. Someone should update that if possible, Nick