From owner-cvs-all@FreeBSD.ORG Wed Apr 28 07:31:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F56416A4CF; Wed, 28 Apr 2004 07:31:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7846443D54; Wed, 28 Apr 2004 07:31:45 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3SEVjGe016017; Wed, 28 Apr 2004 07:31:45 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3SEVjtb016009; Wed, 28 Apr 2004 07:31:45 -0700 (PDT) (envelope-from ru) Message-Id: <200404281431.i3SEVjtb016009@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 28 Apr 2004 07:31:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/boot2 boot1.S sio.S src/sys/boot/i386/btx/btx btx.S src/sys/boot/i386/btx/btxldr btxldr.S src/sys/boot/i386/libi386 amd64_tramp.S src/sys/boot/i386/pxeldr pxeldr.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Apr 2004 14:31:45 -0000 ru 2004/04/28 07:31:44 PDT FreeBSD src repository Modified files: sys/boot/i386/boot2 boot1.S sio.S sys/boot/i386/btx/btx btx.S sys/boot/i386/btx/btxldr btxldr.S sys/boot/i386/libi386 amd64_tramp.S sys/boot/i386/pxeldr pxeldr.S Log: After talking to Bruce Evans and reading more standards specs, switch to using C99-style comments everywhere in preprocessed assembler. The reason is that lines starting with the regexp '^[[:space:]]#' are treated as preprocessing directives, and while it seems to work now with GCC, it's not necessarily has to work. Use C99 comments `//' for the trailing comments to save whitespace. Revision Changes Path 1.26 +210 -210 src/sys/boot/i386/boot2/boot1.S 1.8 +42 -42 src/sys/boot/i386/boot2/sio.S 1.36 +921 -920 src/sys/boot/i386/btx/btx/btx.S 1.16 +276 -276 src/sys/boot/i386/btx/btxldr/btxldr.S 1.3 +5 -5 src/sys/boot/i386/libi386/amd64_tramp.S 1.12 +167 -163 src/sys/boot/i386/pxeldr/pxeldr.S