From owner-svn-src-all@FreeBSD.ORG Thu Jan 1 16:56:16 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F06CB88; Thu, 1 Jan 2015 16:56:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 5BD2A9CC; Thu, 1 Jan 2015 16:56:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t01GuGON033141; Thu, 1 Jan 2015 16:56:16 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t01GuGIZ033140; Thu, 1 Jan 2015 16:56:16 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201501011656.t01GuGIZ033140@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 1 Jan 2015 16:56:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276505 - head/sys/modules/bios/smapi X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jan 2015 16:56:16 -0000 Author: dim Date: Thu Jan 1 16:56:15 2015 New Revision: 276505 URL: https://svnweb.freebsd.org/changeset/base/276505 Log: Remove the clang -no-integrated-as workaround for smapi_bios.S, as clang 3.5.0 now supports the assembly just fine. Modified: head/sys/modules/bios/smapi/Makefile Modified: head/sys/modules/bios/smapi/Makefile ============================================================================== --- head/sys/modules/bios/smapi/Makefile Thu Jan 1 15:48:12 2015 (r276504) +++ head/sys/modules/bios/smapi/Makefile Thu Jan 1 16:56:15 2015 (r276505) @@ -8,7 +8,3 @@ SRCS= smapi.c smapi_bios.S \ bus_if.h device_if.h .include - -# XXX: clang integrated-as doesn't grok 16-bit assembly yet -CFLAGS.smapi_bios.S= ${CLANG_NO_IAS} -CFLAGS+= ${CFLAGS.${.IMPSRC:T}}