From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 39154 invoked by alias); 22 Sep 2016 09:38:15 -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 39113 invoked by uid 89); 22 Sep 2016 09:38:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-qk0-f178.google.com Received: from mail-qk0-f178.google.com (HELO mail-qk0-f178.google.com) (209.85.220.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 22 Sep 2016 09:38:00 +0000 Received: by mail-qk0-f178.google.com with SMTP id t7so70601586qkh.2 for ; Thu, 22 Sep 2016 02:38:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=atQo5UW+67u9EAj+X/QI26jzXV2jKFk9uHCP1a90HpQ=; b=UT6xkRuBnFSpt1RToWI2BJK0kNvazdz1f3PAue+ei8biCUcuU7D3iVQAr3ORwH/Seg oEkjdVzpTZ5VLepItKcSLvDFwLRgzIKt6GPexJZKyuBob4VGZAaMgn89WryOMvaB+19K fgNNULdpIrbqpXSmj+ubJVoPu1juWqP7WCmguKkWnBXOR1wfDUaXO0YOSaZvZ9ddoba3 E2MBHUguSXiZW3SjG0lFFPfrnXwYXjMSzPuMkZOv6dGX1d4yfkjninfVM6X7qhssCRVU DI9M5c/vz+3lhRRQzXdINBmHWZiKhFbNYlnGZmZr4kfYpkl9lMQy0zW6dgBdNhMjla6B n6Fw== X-Gm-Message-State: AA6/9Rlnz/KQB9VPnFs493phmxJqVB8Q77RYwNARuPKksEpXtItdqIF5FQT9t7NyEqeD2updxOqdCgVXVBG7ejsZ X-Received: by 10.55.119.134 with SMTP id s128mr867902qkc.39.1474537079168; Thu, 22 Sep 2016 02:37:59 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.21.80 with HTTP; Thu, 22 Sep 2016 02:37:58 -0700 (PDT) In-Reply-To: References: <20160921093115.GI17376@redhat.com> From: Christophe Lyon Date: Thu, 22 Sep 2016 09:43:00 -0000 Message-ID: Subject: Re: [v3 PATCH] PR libstdc++/77288 and the newest proposed resolution for LWG 2756 To: Ville Voutilainen Cc: Jonathan Wakely , "libstdc++" , "gcc-patches@gcc.gnu.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-09/txt/msg01514.txt.bz2 On 22 September 2016 at 11:05, Ville Voutilainen wrote: > On 22 September 2016 at 11:55, Christophe Lyon > wrote: >> The new test 77288.cc fails on old arm targets (armv5t): >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc: >> In function 'void test01()': >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc:31: >> error: 'exception_ptr' is not a member of 'std' >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc:31: >> error: template argument 1 is invalid >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc:31: >> error: template argument 1 is invalid >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc:32: >> error: 'exception_ptr' is not a member of 'std' >> /aci-gcc-fsf/sources/gcc-fsf/gccsrc/libstdc++-v3/testsuite/20_util/optional/77288.cc:32: >> error: template argument 1 is invalid > > > Does the attached patch fix the problem? Yes, thanks! Christophe