From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28269 invoked by alias); 6 Nov 2012 17:12:21 -0000 Received: (qmail 28141 invoked by uid 22791); 6 Nov 2012 17:12:19 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail-da0-f47.google.com (HELO mail-da0-f47.google.com) (209.85.210.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Nov 2012 17:12:12 +0000 Received: by mail-da0-f47.google.com with SMTP id s35so265132dak.20 for ; Tue, 06 Nov 2012 09:12:12 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:organization:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding:x-gm-message-state; bh=+wjeYU/80vD1uNAobs6qgB2CVFZ9neRD6oBKQAwpSGQ=; b=HIWR5N26PlRUC/ZnnNmdIP7zt4R1mA2wWtkzEG0JR18LuZgNBaTE+2LTgnrfS/nbqB nq2KsrrxEsdMbUpTPQwAgc3PDkNJiTMTeIKjB6lz5PlOvhht0n863ORcS/mYQSeWvzAH 0ZYZrgqg6TIJJ9ZwhmfM2oQye8xt9s5mrv8fMFI6hwpMOpb9fxUjAUvAc133yea94tRP JZK38Uo9pgxcuSz5GYK1L2jCOQqtrXrzKwPH/oikdsNpLMEl1rpvSA1TJXxtsqO4YJtk v8JaZfXNAIU3Oy2DSOvOJmt6ROTLnVKx3NQolA9GhRIuiWhnCR3Rbfx5iSAo050Mstuj 9kIA== Received: by 10.68.232.71 with SMTP id tm7mr5143077pbc.118.1352221932189; Tue, 06 Nov 2012 09:12:12 -0800 (PST) Received: from dhcp-172-19-69-220.mtv.corp.google.com (dhcp-172-19-69-220.mtv.corp.google.com [172.19.69.220]) by mx.google.com with ESMTPS id o11sm12622188pby.8.2012.11.06.09.12.10 (version=SSLv3 cipher=OTHER); Tue, 06 Nov 2012 09:12:11 -0800 (PST) Message-ID: <509944E9.7090102@google.com> Date: Tue, 06 Nov 2012 17:12:00 -0000 From: Diego Novillo User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: Dodji Seketeli CC: gcc-patches@gcc.gnu.org, jakub@redhat.com, wmi@google.com, davidxl@google.com, konstantin.s.serebryany@gmail.com Subject: Re: [PATCH 04/10] Allow asan at -O0 References: <1351799566-31447-1-git-send-email-dodji@redhat.com> <87pq3v8vmi.fsf@redhat.com> <87625n8vdd.fsf_-_@redhat.com> In-Reply-To: <87625n8vdd.fsf_-_@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQkZjAf/ydK1kSQtiC7XYvdaJPJXkTzuogiiDifxNTCobOUpn3txZAMOWNzapo4nFG2qeZRK/LNDU+ofDj6dwYUyKtF7F0MMUXy6JWWe5/jylv04OUkYmxLQIZhkneG2IL/hhBbleJouo2m9IF3/MRwQVsbOmlj8Hcja3moOsssgoMFDVO0nJY5WnUAgS/i4p3gwtpc3 X-IsSubscribed: yes 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 X-SW-Source: 2012-11/txt/msg00537.txt.bz2 On 2012-11-02 15:58 , Dodji Seketeli wrote: > This patch defines a new asan pass gate that is activated at -O0, in > addition to the pass that was initially activated at -O3 level The > patch also does some comment cleanups here and there. > > * asan.c (build_check_stmt): Rename join_bb variable to else_bb. > (gate_asan_O0): New function. > (pass_asan_O0): New variable. > * passes.c (init_optimization_passes): Add pass_asan_O0. > * tree-pass.h (pass_asan_O0): New declaration. OK. Diego.