From owner-svn-ports-head@freebsd.org Sun Jun 12 02:50:58 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5948EAF0A28; Sun, 12 Jun 2016 02:50:58 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 45D0D2665; Sun, 12 Jun 2016 02:50:58 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 4480D1704; Sun, 12 Jun 2016 02:50:58 +0000 (UTC) Date: Sun, 12 Jun 2016 02:50:58 +0000 From: Alexey Dokuchaev To: Gerald Pfeifer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r416661 - in head/lang: . gcc6 Message-ID: <20160612025056.GA9505@FreeBSD.org> References: <201606100904.u5A94Fuq018242@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201606100904.u5A94Fuq018242@repo.freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Jun 2016 02:50:58 -0000 On Fri, Jun 10, 2016 at 09:04:15AM +0000, Gerald Pfeifer wrote: > New Revision: 416661 > URL: https://svnweb.freebsd.org/changeset/ports/416661 > > Log: > Welcome to the GCC 6.1 release, the first release of the GCC 6 series. > > The default mode for C++ is now -std=gnu++14 instead of -std=gnu++98. > > Type-based alias analysis now disambiguates accesses to different pointers. > This improves precision of the alias oracle by about 20-30% on higher-level > C++ programs. Programs doing invalid type punning of pointer types may now > need -fno-strict-aliasing to work correctly. Luckily we have -fno-strict-aliasing in the default CFLAGS (some interesting read on the subject: http://blog.regehr.org/archives/1307, via fanf@). Also, thanks for the excellent commit message Gerald (as always). ./danfe