From owner-svn-ports-branches@freebsd.org Wed Feb 1 12:53:44 2017 Return-Path: Delivered-To: svn-ports-branches@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 44D99CCB899; Wed, 1 Feb 2017 12:53:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE8B019C3; Wed, 1 Feb 2017 12:53:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v11CrhqT076797; Wed, 1 Feb 2017 12:53:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v11CrhL7076796; Wed, 1 Feb 2017 12:53:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702011253.v11CrhL7076796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 1 Feb 2017 12:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r433026 - branches/2017Q1/graphics/svgalib/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2017 12:53:44 -0000 Author: jbeich Date: Wed Feb 1 12:53:42 2017 New Revision: 433026 URL: https://svnweb.freebsd.org/changeset/ports/433026 Log: MFH: r432966 graphics/svgalib: unbreak with clang 4.0 In file included from gl/grlib.c:7: gl/inlstring.h:71:9: error: asm-specifier for input or output variable conflicts with asm clobber list : "cx", "di"); ^ gl/inlstring.h:281:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ gl/inlstring.h:297:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ gl/inlstring.h:314:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ PR: 216154 Reported by: antoine (via exp-run) Submitted by: dim Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2017Q1/graphics/svgalib/files/patch-gl-inlstring.h Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/graphics/svgalib/files/patch-gl-inlstring.h ============================================================================== --- branches/2017Q1/graphics/svgalib/files/patch-gl-inlstring.h Wed Feb 1 12:42:16 2017 (r433025) +++ branches/2017Q1/graphics/svgalib/files/patch-gl-inlstring.h Wed Feb 1 12:53:42 2017 (r433026) @@ -8,3 +8,39 @@ #if defined(__alpha__) || defined (NO_ASSEMBLY) +@@ -68,7 +68,7 @@ static inline void * + "rep\n\t" + "stosb" + : : "a"(c), "D"(s), "c"(count) +- : "cx", "di"); ++ ); + return s; + } + +@@ -278,7 +278,7 @@ static inline void * + "1:call __memcpyasm_regargs\n\t" + "2:": + :"S"(dest), "d"(src), "c"(n) +- :"ax", "0", "1", "2"); ++ :"ax"); + return dest; + } + +@@ -294,7 +294,7 @@ static inline void * + "1:call __memcpyasm_regargs_aligned\n\t" + "2:\n\t": + :"S"(dest), "d"(src), "c"(n) +- :"ax", "0", "1", "2"); ++ :"ax"); + return dest; + } + +@@ -311,7 +311,7 @@ static inline void * + "2:\n\t" + : + :"S"((long) dest), "d"((long) src), "c"((long) n) +- :"ax", "0", "1", "2"); ++ :"ax"); + return dest; + } +