From patchwork Thu Feb 6 16:23:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 3596931 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 45D549F382 for ; Thu, 6 Feb 2014 16:23:50 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 8E40A20163 for ; Thu, 6 Feb 2014 16:23:49 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id B875420122 for ; Thu, 6 Feb 2014 16:23:48 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 954F9FB0CB; Thu, 6 Feb 2014 08:23:47 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-we0-f175.google.com (mail-we0-f175.google.com [74.125.82.175]) by gabe.freedesktop.org (Postfix) with ESMTP id 48ED8FB0CB for ; Thu, 6 Feb 2014 08:23:46 -0800 (PST) Received: by mail-we0-f175.google.com with SMTP id q59so1444419wes.6 for ; Thu, 06 Feb 2014 08:23:44 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=/hkvaQvjdaKUAEOOGk/qqaUizG2IaMxBTKoH+tU6GjE=; b=LOkp8iWBuOZ7Cc4tW9a6LawvzvdywlmKbDFwwxMlpt2c97SpI9EBH03vUyyT0ZFImV F9d/c2hWAyNR1nQ8qXvAXSzWkkbhti5vrHQ4sD3w23VpIRknkv4osE58N82KXS87Dm+5 Maa7CSlc22OvtTWFZgpapdrfU3m1VDbTw+8c2zXKH+9N642+ierTHLLP7Fw3VbUgEQ8G EJ9WZg+UkxdB5RHLQTTlECDCQ3DlwUcxPIjfeevZK3UGYmSAaeVLozGZVARiQr4U6rUQ OUCMwyocHiMiZH9uZskxdO9S64pMqKV/w06vta2JiJvPrsaQos4r9Prtce7uxeOTmUai qRKQ== X-Gm-Message-State: ALoCoQnbJB+A0vJ4lnwdsild3nrz/I8dExgcIrq3D7ysaw/dboCXot2zVhwDzIB+tw/jAbL+pAB8 X-Received: by 10.180.185.197 with SMTP id fe5mr105244wic.56.1391703824622; Thu, 06 Feb 2014 08:23:44 -0800 (PST) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id r1sm56773480wia.5.2014.02.06.08.23.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Feb 2014 08:23:43 -0800 (PST) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Thu, 6 Feb 2014 16:23:42 +0000 Message-Id: <1391703822-25819-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 1.8.5.3 Subject: [Intel-gfx] [PATCH i-g-t] assembler: define YY_NO_INPUT to prevent unused symbol warnings X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Thomas Wood --- assembler/lex.l | 1 + 1 file changed, 1 insertion(+) diff --git a/assembler/lex.l b/assembler/lex.l index 4f1f961..81a52ba 100644 --- a/assembler/lex.l +++ b/assembler/lex.l @@ -12,6 +12,7 @@ extern char *input_filename; /* Locations */ int yycolumn = 1; +#define YY_NO_INPUT #define YY_USER_ACTION \ yylloc.first_line = yylloc.last_line = yylineno; \ yylloc.first_column = yycolumn; \