From owner-svn-src-projects@FreeBSD.ORG Fri Sep 7 22:16:51 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C438106566C; Fri, 7 Sep 2012 22:16:51 +0000 (UTC) (envelope-from cherry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EB94D8FC18; Fri, 7 Sep 2012 22:16:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q87MGoCQ072933; Fri, 7 Sep 2012 22:16:50 GMT (envelope-from cherry@svn.freebsd.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q87MGoJU072931; Fri, 7 Sep 2012 22:16:50 GMT (envelope-from cherry@svn.freebsd.org) Message-Id: <201209072216.q87MGoJU072931@svn.freebsd.org> From: "Cherry G. Mathew" Date: Fri, 7 Sep 2012 22:16:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240216 - projects/amd64_xen_pv/sys/amd64/xen X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Sep 2012 22:16:51 -0000 Author: cherry Date: Fri Sep 7 22:16:50 2012 New Revision: 240216 URL: http://svn.freebsd.org/changeset/base/240216 Log: Concatenate ascii strings by declaring them separately rather than juxtapositioning them. This allows the kernel to be built by clang. Modified: projects/amd64_xen_pv/sys/amd64/xen/locore.S Modified: projects/amd64_xen_pv/sys/amd64/xen/locore.S ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/locore.S Fri Sep 7 22:16:08 2012 (r240215) +++ projects/amd64_xen_pv/sys/amd64/xen/locore.S Fri Sep 7 22:16:50 2012 (r240216) @@ -47,7 +47,8 @@ #endif .section __xen_guest - .ascii "LOADER=generic,GUEST_OS=freebsd,GUEST_VER=9.0,XEN_VER=xen-3.0,BSD_SYMTAB,VIRT_BASE="__XSTRING(KERNBASE) + .ascii "LOADER=generic,GUEST_OS=freebsd,GUEST_VER=9.0,XEN_VER=xen-3.0,BSD_SYMTAB,VIRT_BASE=" + .ascii __XSTRING(KERNBASE) .byte 0 ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS, .asciz, "FreeBSD")