From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 35615 invoked by alias); 10 Jun 2016 20:26:47 -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 35595 invoked by uid 89); 10 Jun 2016 20:26:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=HTo:D*ch, Hx-languages-length:951 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 10 Jun 2016 20:26:35 +0000 Received: from anthias (vie-91-186-158-235.dsl.sil.at [91.186.158.235]) (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 234423F427; Fri, 10 Jun 2016 16:26:29 -0400 (EDT) Date: Fri, 10 Jun 2016 20:26:00 -0000 From: Gerald Pfeifer To: Andreas Tobler cc: gcc-patches@gcc.gnu.org Subject: Re: [patch] FreeBSD armv6 unaligned access In-Reply-To: <579eb27a-25ff-f419-215d-abe431f5399b@fgznet.ch> Message-ID: References: <579eb27a-25ff-f419-215d-abe431f5399b@fgznet.ch> MIME-Version: 1.0 Content-Type: text/plain; CHARSET=US-ASCII; FORMAT=flowed X-IsSubscribed: yes X-SW-Source: 2016-06/txt/msg00853.txt.bz2 Hi Andreas, On Fri, 10 Jun 2016, Andreas Tobler wrote: > FreeBSD 11 will bring unaligned access support for armv6 and up. > This patch enables it. > > If no objection I'll commit it to trunk, gcc-6 branch and gcc-5 > branch in the next days. As FreeBSD maintainer, you don't need to wait, though it is considered good practice to first start on trunk and push back to release branches after a few days (or weeks). For a straightforward change like this I don't think that is necessary, though. > 2016-06-10 Andreas Tobler > > * config/arm/freebsd.h: Enable unaligned access for armv6 on > FreeBSD 11. Two comments on this ChangeLog: Right now all versions are enabled, aren't they? And this is not specific to FreeBSD 11, but 11 and above? So, how about the following variation? * config/arm/freebsd.h: Only enable unaligned access for armv6 on FreeBSD 11 and above. Gerald