From owner-svn-src-head@FreeBSD.ORG Fri Jun 13 16:32:49 2014 Return-Path: Delivered-To: svn-src-head@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 CD9F6910 for ; Fri, 13 Jun 2014 16:32:49 +0000 (UTC) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) (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 949092DBF for ; Fri, 13 Jun 2014 16:32:49 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id rp18so2707668iec.27 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=agS0mvjflmw+zyuXTjvxn6wAbfvoo2JMhIYTcWocziTwXe6zft9uu9yu4TlUbeU6nR IZ1mq2iJnRoF1t0x+d8kBjVPZXOb38VAMtu9X2V4prJE5qHim1Lm+T0m59KDirHWb++0 0+FhvTGdCWKyAMaaMchaw6xJcg0xJk+oHnPqIGjLMYFarxGrsOXuoVYLdDpvrCWZIkwe GfTijn/pkHRO9E7tB8zbZWPQNvp3EcxNmpe+s7eqXYmr0nwudFJ8FPpobiWki/IDN5Qx 9QYNbeYRE4I/S1aokrSwyvNRtqPu4Fk2pW56MzmSYlLEgEwFIZdIcbqyzSltfzSZsgen mVfQ== X-Gm-Message-State: ALoCoQlp3UZ+HTVrzMDCa+MEg1innvs6cFA2j2fMQaLZ6eQErFw/pRS3Sn+hU1oyO69Frgm2/w94 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-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2014 16:32:49 -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