From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 103685 invoked by alias); 6 Apr 2017 10:08:03 -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 103674 invoked by uid 89); 6 Apr 2017 10:08:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 06 Apr 2017 10:08:01 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A8C3380F8E; Thu, 6 Apr 2017 10:08:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com A8C3380F8E Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jwakely@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com A8C3380F8E Received: from localhost (unknown [10.33.36.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0DA80A861B; Thu, 6 Apr 2017 10:08:00 +0000 (UTC) Date: Thu, 06 Apr 2017 10:08:00 -0000 From: Jonathan Wakely To: Bernd Edlinger Cc: Jason Merrill , Richard Biener , Jakub Jelinek , GCC Patches , Marc Glisse , Jeff Law Subject: Re: [PATCH] Add a new type attribute always_alias (PR79671) Message-ID: <20170406100800.GS4425@redhat.com> References: <20170405132832.GS17461@tucnak> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.8.0 (2017-02-23) X-SW-Source: 2017-04/txt/msg00274.txt.bz2 On 05/04/17 20:46 +0000, Bernd Edlinger wrote: >It does the same as may_alias but additionally objects >declared with that type have alias set 0, I just don't >know if I have yet found the right words so that it can >be understood. Based on the feedback I have now written: > >+@item typeless_storage >+@cindex @code{typeless_storage} type attribute >+An object declared with a type with this attribute behaves like a >+character type with respect to aliasing semantics. This says that an object behaves like a type, which is a category error. Don't you mean that a type declared with this attribute behaves like a character type w.r.t aliasing semantics? Or an object of a type with this attribute behaves like an object of character type w.r.t aliasing semantics.