From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 41870 invoked by alias); 1 Jan 2017 14:27:36 -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 41855 invoked by uid 89); 1 Jan 2017 14:27:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=planning X-HELO: ainaz.pair.com Received: from ainaz.pair.com (HELO ainaz.pair.com) (209.68.2.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 01 Jan 2017 14:27:33 +0000 Received: from [172.31.0.125] (sub-34ip117.rev.onenet.cw [190.88.34.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 35B633F531; Sun, 1 Jan 2017 09:27:29 -0500 (EST) Date: Sun, 01 Jan 2017 14:27:00 -0000 From: Gerald Pfeifer To: Jakub Jelinek cc: Jason Merrill , Jonathan Wakely , gcc-patches@gcc.gnu.org Subject: Re: [C++ PATCH] Implement LWG2296 helper intrinsic In-Reply-To: <20161007192330.GJ7282@tucnak.redhat.com> Message-ID: References: <20161007192330.GJ7282@tucnak.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-IsSubscribed: yes X-SW-Source: 2017-01/txt/msg00007.txt.bz2 On Fri, 7 Oct 2016, Jakub Jelinek wrote: > The following patch adds __builtin_addressof with the semantics it has in > clang, i.e. it is a constexpr & operator alternative that never uses the > overloaded & operator. Nice! Are you planning to document this in gcc-7/changes.html ? Gerald