From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 77260 invoked by alias); 31 May 2017 20:35:00 -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 76918 invoked by uid 89); 31 May 2017 20:34:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy= X-HELO: mail-qt0-f170.google.com Received: from mail-qt0-f170.google.com (HELO mail-qt0-f170.google.com) (209.85.216.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 31 May 2017 20:34:58 +0000 Received: by mail-qt0-f170.google.com with SMTP id c13so21831188qtc.1 for ; Wed, 31 May 2017 13:35:02 -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-language :content-transfer-encoding; bh=MCRaNuE0ZwEi15fEwYLpr8I5OSeZ4ZXhQ4CiuJJbDWs=; b=H1nnqQt5siQqQhKg4kna9FZL09k/cC7AX7PGbfKWbzgM3B6BHtfZO+Z5mRsLf7uc+n 2Gp2OU9MN44dSh66EETFIUiUH9RUH30tJQ/Mhu5TqNxd+u6qNe7XKJVqXDcfJqHNdQjC iUoT9rlXbE0/E6zcal4Nhk3HLN2YcG9LxAi26FW/vMCDpaCm2EeugCiHCv6UMVwXzuH/ zi1zRPDdBsoeuSQDZE8iYT0mkhts/Wpq1lAqTNW5QDFQhMcQ05Tl79Y2b02WFHuBCeFm L+IoO/sbaYjXXf6k7MgmPgoLN3fkOD1pET4bhmTmC+Y4Oefwj5iydCapRgCwsqBIy9wg BjxQ== X-Gm-Message-State: AODbwcC6nutUE/XwAJnpPQcLbm+Y5HFaEh8Cena+s7QnR4l8p7SAEe4T 3BfS6BaYsSKSb6To X-Received: by 10.200.34.109 with SMTP id p42mr31730357qtp.17.1496262900948; Wed, 31 May 2017 13:35:00 -0700 (PDT) Received: from [192.168.1.132] (209-6-90-240.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com. [209.6.90.240]) by smtp.gmail.com with ESMTPSA id b142sm8433847qka.54.2017.05.31.13.34.59 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 31 May 2017 13:35:00 -0700 (PDT) Subject: Re: [C++ PATCH] PR c++/80812 To: Ville Voutilainen , "gcc-patches@gcc.gnu.org" , libstdc++ References: From: Jason Merrill Message-ID: Date: Wed, 31 May 2017 20:37:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg02407.txt.bz2 On 05/25/2017 05:29 AM, Ville Voutilainen wrote: > Tested on Linux-x64, running full suite on Linux-ppc64. It seems fitting > to put the test into the library tests, we don't have separate tests > on the front-end side for __is_constructible, so I think adding such > would be a separate job. > > 2017-05-25 Ville Voutilainen > > cp/ > > PR c++/80812 > * method.c (constructible_expr): Strip array types before calling > build_value_init. OK. Jason