From owner-svn-src-all@FreeBSD.ORG Fri Jun 13 16:32:44 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 495597EE for ; Fri, 13 Jun 2014 16:32:44 +0000 (UTC) Received: from mail-ig0-f178.google.com (mail-ig0-f178.google.com [209.85.213.178]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1072A2DBD for ; Fri, 13 Jun 2014 16:32:43 +0000 (UTC) Received: by mail-ig0-f178.google.com with SMTP id hn18so742015igb.5 for ; Fri, 13 Jun 2014 09:32:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:content-type:mime-version:subject :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to; bh=COJYekgg0gfqowDv4wcLIeGh/sIpTiARm28cvEgusj4=; b=lOsLMJ/CncjgKwMrr5LMSj4olF6Ckr04DoOU/WsldZVOg9uID0/mAbnNlS5o51WCJi PaDLfVc5ZN1pLyZBsk/5P/41Jr7fKAgLY4/F+AzDLJsCWXobj//wSmvys6aW893iDWek oCSdJDO8miQjc9BUoRoALEkat1BLS0AzLbT+DM4KyvLr/BCcM3Nzua5cN7aREAf1wqxh q5Hpkm1zjYTkhacbmPBIPZL8cxSlFqM86ff2+DMRdPY/xPrvc9377pklYCMzHV+Y16F3 anLffL5epa7ly4qO/u6kZXIKgWvst7h9K7PYCDSpB8YejvgrA+XSANXJ21wB9y7lpYgf Yu/Q== X-Gm-Message-State: ALoCoQlEUecch/UDTFvVuDylT52sYFZQfcuYicWJ/kVIuQbzprfz8w4HnXszE6Z4YnAXxusoJMY+ X-Received: by 10.50.18.80 with SMTP id u16mr6295747igd.30.1402677162996; Fri, 13 Jun 2014 09:32:42 -0700 (PDT) Received: from [10.0.0.119] (50-78-194-198-static.hfc.comcastbusiness.net. [50.78.194.198]) by mx.google.com with ESMTPSA id y15sm4330548igy.2.2014.06.13.09.32.42 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 13 Jun 2014 09:32:42 -0700 (PDT) Sender: Warner Losh From: Warner Losh X-Google-Original-From: Warner Losh Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.2\)) Subject: Re: svn commit: r267318 - head/usr.bin/dtc In-Reply-To: Date: Fri, 13 Jun 2014 10:32:44 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <208E5B83-48DB-478B-A73E-098B8525E18F@gmail.com> References: <201406100616.s5A6GY4Q093247@svn.freebsd.org> To: Benjamin Kaduk X-Mailer: Apple Mail (2.1878.2) Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , Rui Paulo X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 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: Fri, 13 Jun 2014 16:32:44 -0000 On Jun 10, 2014, at 7:57 AM, Benjamin Kaduk wrote: > On Tue, Jun 10, 2014 at 2:16 AM, Rui Paulo wrote: > Author: rpaulo > Date: Tue Jun 10 06:16:34 2014 > New Revision: 267318 > URL: http://svnweb.freebsd.org/changeset/base/267318 >=20 > Log: > dtc: ignore lines starting with #. >=20 > This is necessary because we use the C pre-processor to parse = #include lines > and cpp adds line markings that start with #. >=20 > [Obligatory note that cpp is tied to its C compiler and is only = obligated to produce output acceptable to that C compiler; such output = could be arbitrarily complex.] Actually, it isn=92t. cpp has an assembler mode, which is what we and = linux use for dtc. Warner